-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
51 lines (51 loc) · 1.98 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2017
},
"ignorePatterns": ["**/*.js"],
"plugins": [
"@typescript-eslint",
"import"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/semi": "error",
"@typescript-eslint/no-namespace": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": ["error", { "ignoreProperties": true, "ignoreParameters": true }],
"@typescript-eslint/no-non-null-assertion": "off",
// "@typescript-eslint/explicit-function-return-type": ["error", { "allowExpressions": true }],
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-duplicate-imports": ["error"],
"@typescript-eslint/no-empty-interface": "off",
"prefer-arrow-callback": "error",
// "import/no-cycle": "error",
"eqeqeq": ["error", "always", {"null": "ignore"}],
"no-throw-literal": "error",
"semi": "error",
"arrow-body-style": ["error", "as-needed"],
"implicit-arrow-linebreak": ["error", "beside"],
"no-empty": ["error", {"allowEmptyCatch": true}],
"no-trailing-spaces": "error",
"indent": ["error", 4, {"ignoreComments": true, "MemberExpression": 0 }],
"brace-style": ["error", "1tbs", {"allowSingleLine": true}],
"no-prototype-builtins": "off",
"prefer-rest-params": "off",
"no-debugger": "warn",
"import/export": "off",
"eol-last": "error",
"no-fallthrough": "off"
}
}