-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
67 lines (67 loc) · 1.56 KB
/
.eslintrc.js
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
module.exports = {
root: true,
env: {
node: true,
browser: true,
jest: true,
},
plugins: ["@typescript-eslint", "prettier"],
extends: [
"plugin:vue/vue3-essential",
"plugin:vue/recommended",
"@vue/standard",
"@vue/typescript/recommended",
"plugin:cypress/recommended",
"plugin:prettier/recommended",
],
parserOptions: {
ecmaVersion: 2020,
},
rules: {
semi: ["error", "never"],
quotes: ["error", "double"],
indent: ["error", 2, { SwitchCase: 1 }],
"object-curly-spacing": ["error", "always"],
"array-bracket-spacing": ["error", "never"],
eqeqeq: ["error", "always"],
"no-restricted-imports": ["error", "generated-sources"],
"comma-style": ["error", "last"],
"comma-spacing": ["error", { before: false, after: true }],
"comma-dangle": ["error", "always-multiline"],
"prettier/prettier": [
"error",
{
semi: false,
trailingComma: "all",
singleQuote: false,
printWidth: 100,
},
],
"no-console": "warn",
},
overrides: [
{
files: ["*.vue"],
rules: {
"max-len": "off",
"vue/multi-word-component-names": "off",
"vue/no-setup-props-destructure": "off",
"vue/max-len": [
"error",
{
code: 100,
template: 300,
ignoreStrings: true,
ignoreUrls: true,
},
],
},
},
],
globals: {
defineProps: "readonly",
defineEmits: "readonly",
defineExpose: "readonly",
withDefaults: "readonly",
},
}