28 lines
660 B
JSON
28 lines
660 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": "off"
|
|
// ,
|
|
// "lines-between-class-members": [
|
|
// "error",
|
|
// "always",
|
|
// { "exceptAfterSingleLine": false }
|
|
// ],
|
|
// "padding-line-between-statements": [
|
|
// "error",
|
|
// { "blankLine": "always", "prev": "const", "next": "*" }
|
|
// ]
|
|
}
|
|
}
|