19 lines
445 B
JSON
19 lines
445 B
JSON
|
|
{
|
||
|
|
"parser": "@typescript-eslint/parser",
|
||
|
|
"extends": [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended"
|
||
|
|
],
|
||
|
|
"plugins": ["@typescript-eslint"],
|
||
|
|
"env": {
|
||
|
|
"browser": true,
|
||
|
|
"es2020": true,
|
||
|
|
"webextensions": true
|
||
|
|
},
|
||
|
|
"rules": {
|
||
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
||
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
||
|
|
"no-console": ["warn", { "allow": ["warn", "error"] }]
|
||
|
|
}
|
||
|
|
}
|