-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
36 lines (36 loc) · 936 Bytes
/
eslint.config.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
export default [
{
env: {
browser: true,
es2021: true,
},
rules: {
"vue/no-multiple-template-root": "off",
"vue/multi-word-component-names": "off",
indent: ["error", 2, { SwitchCase: 1 }],
"max-len": ["error", { code: 120 }],
"linebreak-style": ["error", "unix"],
semi: ["warn", "always"],
"comma-dangle": [
"error",
{
arrays: "always-multiline",
objects: "always-multiline",
imports: "always-multiline",
exports: "always-multiline",
functions: "ignore",
},
],
"sort-exports/sort-exports": ["error", { sortDir: "asc" }],
"sort-imports": [
"error",
{
ignoreCase: false,
ignoreDeclarationSort: true,
ignoreMemberSort: false,
memberSyntaxSortOrder: ["all", "single", "multiple", "none"],
},
],
},
},
];