soroban-spec-typescript 23.0.1

Soroban contract spec utilities for generating JSON.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/* eslint-env node */
module.exports = {
  extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
  parser: '@typescript-eslint/parser',
  parserOptions: { project: './tsconfig.json' },
  plugins: ['@typescript-eslint'],
  root: true,
  rules: {
    "@typescript-eslint/no-floating-promises": ["error"]
  },
};