36 lines
753 B
Plaintext
36 lines
753 B
Plaintext
|
{
|
||
|
"root": true,
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"plugins": [
|
||
|
"@typescript-eslint"
|
||
|
],
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/eslint-recommended",
|
||
|
"plugin:@typescript-eslint/recommended"
|
||
|
],
|
||
|
"rules": {
|
||
|
"no-constant-condition": [
|
||
|
"error",
|
||
|
{
|
||
|
"checkLoops": false
|
||
|
}
|
||
|
],
|
||
|
"quotes": [
|
||
|
"error",
|
||
|
"single",
|
||
|
{
|
||
|
"allowTemplateLiterals": true
|
||
|
}
|
||
|
],
|
||
|
"semi": "error",
|
||
|
"indent": [
|
||
|
"error",
|
||
|
4,
|
||
|
{
|
||
|
"SwitchCase": 1
|
||
|
}
|
||
|
],
|
||
|
"eqeqeq": "error"
|
||
|
}
|
||
|
}
|