13 lines
511 B
JSON
13 lines
511 B
JSON
{
|
|
"root": true,
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": { "project": ["./tsconfig.json"] },
|
|
"plugins": ["@typescript-eslint"],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
"@typescript-eslint/no-use-before-define": "warn",
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"@typescript-eslint/quotes": ["warn", "double", {"allowTemplateLiterals": true}]
|
|
}
|
|
} |