|
| 1 | +{ |
| 2 | + "parser": "@typescript-eslint/parser", |
| 3 | + "parserOptions": { |
| 4 | + "project": "./tsconfig.eslint.json" |
| 5 | + }, |
| 6 | + "plugins": ["@typescript-eslint", "prettier", "simple-import-sort"], |
| 7 | + "extends": [ |
| 8 | + "eslint:recommended", |
| 9 | + "plugin:@typescript-eslint/eslint-recommended", |
| 10 | + "plugin:@typescript-eslint/recommended-requiring-type-checking", |
| 11 | + "plugin:@typescript-eslint/recommended", |
| 12 | + "plugin:prettier/recommended", |
| 13 | + "prettier/@typescript-eslint" |
| 14 | + ], |
| 15 | + "rules": { |
| 16 | + "@typescript-eslint/await-thenable": "off", |
| 17 | + "@typescript-eslint/ban-ts-comment": "off", |
| 18 | + "@typescript-eslint/ban-types": "off", |
| 19 | + "@typescript-eslint/camelcase": "off", |
| 20 | + "@typescript-eslint/explicit-function-return-type": "off", |
| 21 | + "@typescript-eslint/explicit-member-accessibility": ["error"], |
| 22 | + "@typescript-eslint/interface-name-prefix": "off", |
| 23 | + "@typescript-eslint/member-ordering": ["error"], |
| 24 | + "@typescript-eslint/no-empty-function": "off", |
| 25 | + "@typescript-eslint/no-empty-interface": "off", |
| 26 | + "@typescript-eslint/no-explicit-any": "off", |
| 27 | + "@typescript-eslint/no-floating-promises": "off", |
| 28 | + "@typescript-eslint/no-inferrable-types": "off", |
| 29 | + "@typescript-eslint/no-misused-promises": "off", |
| 30 | + "@typescript-eslint/no-namespace": "off", |
| 31 | + "@typescript-eslint/no-non-null-assertion": "off", |
| 32 | + "@typescript-eslint/no-unsafe-assignment": "off", |
| 33 | + "@typescript-eslint/no-unsafe-call": "off", |
| 34 | + "@typescript-eslint/no-unsafe-member-access": "off", |
| 35 | + "@typescript-eslint/no-unsafe-return": "off", |
| 36 | + "@typescript-eslint/no-unused-vars": "off", |
| 37 | + "@typescript-eslint/no-var-requires": "off", |
| 38 | + "@typescript-eslint/prefer-regexp-exec": "off", |
| 39 | + "@typescript-eslint/require-await": "off", |
| 40 | + "@typescript-eslint/restrict-plus-operands": "off", |
| 41 | + "@typescript-eslint/restrict-template-expressions": "off", |
| 42 | + "@typescript-eslint/unbound-method": "off", |
| 43 | + "jest/no-standalone-expect": "off", |
| 44 | + "no-async-promise-executor": "off", |
| 45 | + "no-empty": "off", |
| 46 | + "no-inferrable-types": "off", |
| 47 | + "no-prototype-builtins": "off", |
| 48 | + "prefer-const": [ |
| 49 | + "error", |
| 50 | + { |
| 51 | + "destructuring": "all" |
| 52 | + } |
| 53 | + ], |
| 54 | + "prettier/prettier": "error", |
| 55 | + "require-atomic-updates": "off", |
| 56 | + "simple-import-sort/sort": "error" |
| 57 | + } |
| 58 | +} |
0 commit comments