-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
97 lines (96 loc) · 2.33 KB
/
.eslintrc.cjs
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
/* eslint-env node */
require("@rushstack/eslint-patch/modern-module-resolution");
module.exports = {
root: true,
extends: [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/eslint-config-typescript/recommended",
"@vue/eslint-config-prettier",
],
plugins: ["simple-import-sort", "import"],
rules: {
"arrow-body-style": "off",
"no-shadow": "off",
"no-unused-vars": "off",
"import/prefer-default-export": "off", //
"@typescript-eslint/no-shadow": ["error"],
"@typescript-eslint/no-unused-vars": ["error"], //
"vue/multi-word-component-names": "off", // transition
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off", //
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"import/first": "error",
"import/no-duplicates": "error" /*
"vue/max-attributes-per-line": [
"error",
{
singleline: {
max: 1,
},
multiline: {
max: 1,
},
},
],
*/,
/*
"vue/first-attribute-linebreak": [
"error",
{
singleline: "ignore",
multiline: "below",
},
],
*/
"vue/html-closing-bracket-newline": [
"error",
{
singleline: "never",
multiline: "always",
},
],
"vue/html-indent": [
"error",
2,
{
attribute: 1,
baseIndent: 1,
closeBracket: 0,
alignAttributesVertically: true,
ignores: [],
},
],
},
overrides: [
{
// https://github.com/lydell/eslint-plugin-simple-import-sort#custom-grouping
files: ["*.ts", "*.vue"],
rules: {
"simple-import-sort/imports": [
"error",
{
groups: [
["^vue", "^@?\\w", "^pinia", "^lodash", "^axios"],
// ["^@/typings"],
// ["^@/api"],
// ["^@/stores"],
// ["^@/composables"],
// ["^@/components"],
// ["^@?\\w"],
["^(@|components)(/.*|$)"],
["^"],
["^\\."],
["^.+\\.?(scss)$"],
],
},
],
},
},
],
env: {
"vue/setup-compiler-macros": true,
},
};