21 lines
566 B
JSON
21 lines
566 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": "off",
|
||
|
"linebreak-style": ["error", "unix"],
|
||
|
"quotes": ["error", "double", { "avoidEscape": true }],
|
||
|
"semi": ["error", "always"],
|
||
|
"@typescript-eslint/ban-ts-comment": "off"
|
||
|
}
|
||
|
}
|