2020-08-25 23:36:04 +00:00
|
|
|
{
|
|
|
|
"env": {
|
2024-03-28 02:33:51 +00:00
|
|
|
"node": true,
|
|
|
|
"es6": true,
|
|
|
|
"jest": true
|
2020-08-25 23:36:04 +00:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"Atomics": "readonly",
|
|
|
|
"SharedArrayBuffer": "readonly"
|
|
|
|
},
|
2024-03-28 02:25:32 +00:00
|
|
|
"parser": "@typescript-eslint/parser",
|
2020-08-25 23:36:04 +00:00
|
|
|
"parserOptions": {
|
2024-03-28 02:33:51 +00:00
|
|
|
"ecmaVersion": 9,
|
|
|
|
"sourceType": "module",
|
|
|
|
"project": "./tsconfig.json"
|
2020-08-25 23:36:04 +00:00
|
|
|
},
|
2024-03-28 02:25:32 +00:00
|
|
|
"plugins": [
|
2024-03-28 02:33:51 +00:00
|
|
|
"jest",
|
2024-03-28 02:25:32 +00:00
|
|
|
"@typescript-eslint"
|
|
|
|
],
|
|
|
|
"extends": [
|
2024-03-28 02:33:51 +00:00
|
|
|
"plugin:github/recommended",
|
2024-03-28 02:25:32 +00:00
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended"
|
|
|
|
],
|
2020-08-25 23:36:04 +00:00
|
|
|
"rules": {
|
2024-03-28 03:00:21 +00:00
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
|
|
"github/no-then": "off",
|
|
|
|
"import/no-namespace": "off",
|
|
|
|
"i18n-text/no-en": "off"
|
2020-08-25 23:36:04 +00:00
|
|
|
}
|
|
|
|
}
|