-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
109 lines (109 loc) · 2.41 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
{
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"airbnb-base",
"plugin:unicorn/all",
"prettier"
],
"plugins": [
"import",
"unicorn",
"promise",
"prettier",
"unused-imports",
"simple-import-sort"
],
"rules": {
"prettier/prettier": "error",
"import/prefer-default-export": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"ts": "never"
}
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": ["webpack/*"]
}
],
"unicorn/import-style": "off",
"unicorn/prefer-module": "off",
"unicorn/no-array-reduce": "off",
"unicorn/prefer-top-level-await": "off",
"unicorn/no-array-for-each": "off",
"unicorn/no-useless-undefined": "off",
"unicorn/prevent-abbreviations": [
"error",
{
"allowList": {
"acc": true,
"env": true,
"arg": true,
"args": true,
"prop": true,
"props": true,
"param": true,
"params": true,
"Env": true
}
}
]
},
"ignorePatterns": ["dist"],
"settings": {
"import/resolver": {
"typescript": {}
}
},
"overrides": [
{
"files": ["**/*.ts"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"airbnb-typescript/base",
"prettier"
],
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/no-floating-promises": "off",
"typescript-eslint/prefer-namespace-keyword": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": ["webpack/*"]
}
]
}
},
{
"files": ["**/*.vue"],
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"extends": [
"plugin:vue/vue3-recommended",
"@vue/typescript/recommended",
"@vue/prettier",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"vue/require-name-property": "error"
}
}
]
}