| { |
| "root": true, |
| "parser": "@typescript-eslint/parser", |
| "plugins": ["@typescript-eslint"], |
| "extends": [ |
| "plugin:@typescript-eslint/recommended", |
| "prettier", |
| "plugin:prettier/recommended", |
| "eslint:recommended" |
| ], |
| "rules": { |
| "@typescript-eslint/array-type": ["error", { "default": "array-simple" }], |
| "@typescript-eslint/explicit-member-accessibility": ["off"], |
| "@typescript-eslint/no-non-null-assertion": ["off"], |
| "@typescript-eslint/no-use-before-define": ["off"], |
| "@typescript-eslint/no-parameter-properties": ["off"], |
| "@typescript-eslint/no-unused-vars": [ |
| "error", |
| { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } |
| ], |
| "@typescript-eslint/ban-ts-comment": ["off"], |
| "@typescript-eslint/no-empty-function": ["off"], |
| "@typescript-eslint/explicit-function-return-type": ["off"], |
| "@typescript-eslint/no-explicit-any": ["off"], |
| "no-unused-vars": ["off"] |
| }, |
| "env": { |
| "node": true, |
| "jest": true, |
| "es6":true |
| } |
| } |