2022-10-23 07:41:41 +00:00
|
|
|
{
|
|
|
|
"root": true,
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es2020": true
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"@typescript-eslint",
|
|
|
|
"eslint-plugin-import"
|
|
|
|
],
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"prettier"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"no-misleading-character-class": "warn",
|
|
|
|
"no-dupe-else-if": "warn",
|
|
|
|
"no-warning-comments": "warn",
|
|
|
|
"import/no-absolute-path": "warn",
|
2022-11-20 10:59:21 +00:00
|
|
|
"@typescript-eslint/no-this-alias": "warn",
|
2022-10-23 07:41:41 +00:00
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
|
|
"@typescript-eslint/ban-types": "off",
|
|
|
|
"@typescript-eslint/no-unused-vars": "off"
|
|
|
|
}
|
|
|
|
}
|