26 lines
584 B
JSON
26 lines
584 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es2021": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/recommended"
|
||
|
],
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 12,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"@typescript-eslint"
|
||
|
],
|
||
|
"rules": {
|
||
|
"indent": ["error", 4],
|
||
|
"linebreak-style": ["error", "unix"],
|
||
|
"quotes": ["error", "double"],
|
||
|
"semi": ["error", "always"],
|
||
|
"@typescript-eslint/ban-ts-comment": "off"
|
||
|
}
|
||
|
}
|