12 lines
379 B
JSON
12 lines
379 B
JSON
|
{
|
||
|
"root": true,
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"plugins": ["@typescript-eslint"],
|
||
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
||
|
"rules": {
|
||
|
"@typescript-eslint/no-unused-vars": ["warn", { "varsIgnorePattern": "_" }],
|
||
|
"@typescript-eslint/no-inferrable-types": ["off"],
|
||
|
"@typescript-eslint/ban-ts-comment": ["warn"]
|
||
|
}
|
||
|
}
|