16 lines
309 B
JSON
16 lines
309 B
JSON
|
|
{
|
||
|
|
"extends": [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended"
|
||
|
|
],
|
||
|
|
"parser": "@typescript-eslint/parser",
|
||
|
|
"parserOptions": { "project": ["./tsconfig.json"] },
|
||
|
|
"plugins": [
|
||
|
|
"@typescript-eslint"
|
||
|
|
],
|
||
|
|
"rules": {
|
||
|
|
"constructor-super": "off"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|