| { |
| "plugins": ["jest", "@typescript-eslint"], |
| "extends": [ |
| "eslint:recommended", |
| "plugin:@typescript-eslint/eslint-recommended", |
| "plugin:@typescript-eslint/recommended", |
| "plugin:@typescript-eslint/recommended-requiring-type-checking", |
| "plugin:prettier/recommended" |
| ], |
| "parser": "@typescript-eslint/parser", |
| "parserOptions": { |
| "ecmaVersion": 9, |
| "sourceType": "module", |
| "project": "./tsconfig.eslint.json" |
| }, |
| "rules": { |
| "@typescript-eslint/camelcase": ["off"] |
| }, |
| "env": { |
| "node": true, |
| "es6": true, |
| "jest/globals": true |
| } |
| } |