This repository has been archived on 2023-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
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"
|
|
|
|
],
|
|
|
|
"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",
|
|
|
|
"import/order": ["error", {
|
|
|
|
"groups": ["builtin", "external", "internal"],
|
|
|
|
"alphabetize": {
|
|
|
|
"order": "asc",
|
|
|
|
"caseInsensitive": true
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
}
|