16 lines
385 B
Plaintext
16 lines
385 B
Plaintext
|
{
|
||
|
"env": {
|
||
|
"es2022": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"plugins": ["@typescript-eslint"],
|
||
|
"root": true,
|
||
|
"rules": {
|
||
|
"@typescript-eslint/no-explicit-any": 0,
|
||
|
"@typescript-eslint/no-non-null-assertion": 0,
|
||
|
"@typescript-eslint/ban-ts-comment": 0
|
||
|
}
|
||
|
}
|