27 lines
745 B
JSON
27 lines
745 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es2021": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:sonarjs/recommended"
|
||
|
],
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 12,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"plugins": ["@typescript-eslint", "sonarjs"],
|
||
|
"rules": {
|
||
|
"indent": "off",
|
||
|
"linebreak-style": ["error", "unix"],
|
||
|
"quotes": ["error", "double", { "avoidEscape": true }],
|
||
|
"semi": ["error", "always"],
|
||
|
"@typescript-eslint/ban-ts-comment": "off",
|
||
|
"sonarjs/cognitive-complexity": ["error", 9],
|
||
|
"sonarjs/no-nested-template-literals": "off"
|
||
|
}
|
||
|
}
|