33 lines
782 B
JSON
33 lines
782 B
JSON
{
|
|||
|
|
"root": true,
|
||
|
|
"parser": "@typescript-eslint/parser",
|
||
|
|
"parserOptions": {
|
||
|
|
"ecmaVersion": 6,
|
||
|
|
"sourceType": "module"
|
||
|
|
},
|
||
|
|
"plugins": [
|
||
|
|
"@typescript-eslint"
|
||
|
|
],
|
||
|
|
"extends": [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended"
|
||
|
|
],
|
||
|
|
"rules": {
|
||
|
|
"@typescript-eslint/naming-convention": "warn",
|
||
|
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
||
|
|
"@typescript-eslint/semi": "warn",
|
||
|
|
"curly": "warn",
|
||
|
|
"eqeqeq": "warn",
|
||
|
|
"no-throw-literal": "warn",
|
||
|
|
"semi": "off"
|
||
|
|
},
|
||
|
|
"ignorePatterns": [
|
||
|
|
"out",
|
||
|
|
"dist",
|
||
|
|
"**/*.d.ts",
|
||
|
|
"scripts",
|
||
|
|
"node_modules",
|
||
|
|
"*.js"
|
||
|
|
]
|
||
|
|
}
|