UNPKG

@maestro-org/typescript-sdk

Version:

TypeScript SDK for the Maestro Dapp Platform

44 lines (43 loc) 1.18 kB
{ "env": { "es2021": true, "node": true }, "extends": [ "airbnb-base", "eslint:recommended", "plugin:import/errors", "plugin:import/warnings", "plugin:import/typescript", "plugin:@typescript-eslint/recommended", "prettier" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, "sourceType": "module" }, "plugins": ["@typescript-eslint/eslint-plugin", "prettier"], "rules": { "import/prefer-default-export": "off", "@typescript-eslint/no-inferrable-types": "off", "import/extensions": "off", "camelcase": "off", "prettier/prettier": 0, "no-console": "off", "class-methods-use-this": "off", "prefer-regex-literals": "warn", "no-control-regex": "warn", "no-use-before-define": "warn", "no-param-reassign": "off", "max-classes-per-file": "warn", "no-useless-constructor": "off" }, "settings": { "import/resolver": { "typescript": { "alwaysTryTypes": true } } } }