2022-10-08 09:33:37 +00:00
|
|
|
{
|
2023-04-04 08:50:20 +00:00
|
|
|
"root": true,
|
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
|
"env": { "node": true },
|
|
|
|
|
"plugins": [
|
|
|
|
|
"@typescript-eslint"
|
|
|
|
|
],
|
|
|
|
|
"extends": [
|
|
|
|
|
"eslint:recommended",
|
|
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
|
|
|
"plugin:@typescript-eslint/recommended"
|
|
|
|
|
],
|
|
|
|
|
"parserOptions": {
|
|
|
|
|
"sourceType": "module"
|
|
|
|
|
},
|
|
|
|
|
"rules": {
|
|
|
|
|
"no-unused-vars": "off",
|
|
|
|
|
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
|
|
|
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
|
|
|
"no-prototype-builtins": "off",
|
2023-06-10 15:19:10 +00:00
|
|
|
"@typescript-eslint/no-empty-function": "off",
|
|
|
|
|
"lines-between-class-members": [ "error", "always", { "exceptAfterSingleLine": true }]
|
2023-04-04 08:50:20 +00:00
|
|
|
}
|
|
|
|
|
}
|