2020-03-13 11:06:53 +00:00
|
|
|
{
|
|
|
|
"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"
|
|
|
|
],
|
2022-03-02 18:31:22 +00:00
|
|
|
"ignorePatterns": [
|
|
|
|
"build/**/*"
|
|
|
|
],
|
2020-03-13 11:06:53 +00:00
|
|
|
"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,
|
2020-11-25 09:58:53 +00:00
|
|
|
"@typescript-eslint/explicit-module-boundary-types": 0,
|
2020-03-13 11:06:53 +00:00
|
|
|
"semi": "off",
|
2022-05-23 13:12:03 +00:00
|
|
|
"import/order": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"groups": [
|
|
|
|
"builtin",
|
|
|
|
"external",
|
|
|
|
"internal"
|
|
|
|
],
|
|
|
|
"alphabetize": {
|
|
|
|
"order": "asc",
|
|
|
|
"caseInsensitive": true
|
|
|
|
}
|
2020-03-13 11:06:53 +00:00
|
|
|
}
|
2022-05-23 13:12:03 +00:00
|
|
|
]
|
2020-03-13 11:06:53 +00:00
|
|
|
}
|
|
|
|
}
|