2020-04-28 15:18:53 +00:00
|
|
|
{
|
|
|
|
"env": { "node": true, "jest": true },
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": { "ecmaVersion": 9, "sourceType": "module" },
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:import/errors",
|
|
|
|
"plugin:import/warnings",
|
|
|
|
"plugin:import/typescript",
|
2023-01-05 21:27:11 +00:00
|
|
|
"plugin:prettier/recommended"
|
2020-04-28 15:18:53 +00:00
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/no-empty-function": "off"
|
|
|
|
},
|
|
|
|
"plugins": ["@typescript-eslint", "jest"]
|
|
|
|
}
|