-
Notifications
You must be signed in to change notification settings - Fork 14
/
.eslintrc
113 lines (113 loc) · 2.81 KB
/
.eslintrc
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"root": true,
"env": {
"browser": true,
"es6": true,
"jasmine": true,
"node": true
},
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:import/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"comment": true,
"project": "./tsconfig.json",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "prettier", "import"],
"rules": {
"camelcase": 2,
"consistent-return": 0,
"consistent-this": [1, "that"],
"curly": [2, "all"],
"default-case": [2],
"dot-notation": [2],
"no-multiple-empty-lines": [2, { "max": 2, "maxEOF": 0 }],
"eqeqeq": [2, "allow-null"],
"guard-for-in": 2,
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never",
"mjs": "never"
}
],
"import/first": [
"off"
],
"import/order": ["error",
{
"groups": [
"builtin",
"external",
"sibling",
"parent",
"internal",
"index",
"object"
],
"pathGroups": [
{
"pattern": "~/**",
"group": "internal"
}
],
"alphabetize": {
"order": "asc" /* sort in ascending order. Options: ['ignore', 'asc', 'desc'] */,
"caseInsensitive": true /* ignore case. Options: [true, false] */
}
}
],
"import/no-default-export": "off",
"import/no-duplicates": ["error"],
"import/no-unresolved": ["error"],
"import/prefer-default-export": "off",
"max-nested-callbacks": [1, 4],
"no-alert": 2,
"no-caller": 2,
"no-console": 2,
"no-constant-condition": 2,
"no-debugger": 2,
"no-else-return": ["error"],
"no-global-strict": 0,
"no-irregular-whitespace": ["error"],
"no-shadow": ["off"],
"@typescript-eslint/no-shadow": "error",
"no-underscore-dangle": 0,
"@typescript-eslint/no-use-before-define": 2,
"@typescript-eslint/await-thenable": "error",
"no-var": 2,
"object-shorthand": ["error", "properties"],
"prefer-const": ["error", { "destructuring": "all" }],
"prefer-template": 2,
"prettier/prettier": "error",
"radix": 2
},
"settings": {
"import/core-modules": ["vscode"],
"import/extensions": [".ts", ".tsx"],
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"typescript": {
"extensions": [".ts"]
},
"node": {
"extensions": [".ts", ".js", ".jsx"]
}
}
}
}