30 lines
809 B
JSON
30 lines
809 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:import/errors",
|
|
"plugin:import/warnings",
|
|
"plugin:import/typescript"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/ban-ts-ignore": 0,
|
|
"@typescript-eslint/camelcase": 0,
|
|
"@typescript-eslint/explicit-function-return-type": 0,
|
|
"@typescript-eslint/interface-name-prefix": 0,
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
"@typescript-eslint/semi": 1,
|
|
"semi": "off",
|
|
"import/order": ["error", {
|
|
"groups": ["builtin", "external", "internal"],
|
|
"alphabetize": {
|
|
"order": "asc",
|
|
"caseInsensitive": true
|
|
}
|
|
}]
|
|
}
|
|
} |