-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc
38 lines (38 loc) · 1008 Bytes
/
.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
{
"parser": "@typescript-eslint/parser",
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": ["import", "simple-import-sort", "@typescript-eslint"],
"rules": {
"import/first": "off",
"import/no-default-export": "off",
"no-duplicate-imports": "error",
"require-await": "error",
"no-async-promise-executor": "error",
"simple-import-sort/imports": [
"error",
{
"groups": [
[
// Side effect imports.
"^\\u0000",
// Packages.
// Things that start with a letter (or digit or underscore), or `@` followed by a letter.
"^@/?\\w",
// Absolute imports and other imports such as Vue-style `@/foo`.
// Anything that does not start with a dot.
"^[^.]",
// Relative imports.
// Anything that starts with a dot.
"^\\."
]
]
}
]
}
}