2020-04-28 23:18:53 +08:00
|
|
|
{
|
2021-12-02 05:52:51 +08:00
|
|
|
"env": {"node": true, "jest": true},
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {"ecmaVersion": 9, "sourceType": "module"},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:import/errors",
|
|
|
|
"plugin:import/warnings",
|
|
|
|
"plugin:import/typescript",
|
|
|
|
"plugin:prettier/recommended",
|
|
|
|
"prettier/@typescript-eslint"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/no-empty-function": "off"
|
|
|
|
},
|
|
|
|
"plugins": ["@typescript-eslint", "jest"]
|
|
|
|
}
|