-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc
49 lines (49 loc) · 1.2 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
{
"$schema": "https://json.schemastore.org/eslintrc.json",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"settings": {
"import/resolver": {
"node": { "extensions": [".ts", ".tsx"] },
"typescript": {}
}
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "import", "unused-imports"],
"rules": {
"import/consistent-type-specifier-style": ["error", "prefer-inline"],
"import/extensions": [
"error",
"ignorePackages",
{ "ts": "never", "tsx": "never" }
],
"import/order": [
"error",
{
"alphabetize": {
"caseInsensitive": true,
"order": "asc",
"orderImportKind": "asc"
},
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index",
"object",
"type"
],
"newlines-between": "always"
}
],
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": "off"
},
"root": true
}