-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.json
37 lines (37 loc) · 1.04 KB
/
.eslintrc.json
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
{
"extends": [
"plugin:vue/base",
"plugin:vue/essential",
"plugin:import/recommended",
"eslint:recommended",
"plugin:vue/vue3-recommended",
"@vue/typescript/recommended",
"prettier"
],
"plugins": ["@typescript-eslint"],
"rules": {
"import/named": "off",
"import/order": [
"error",
{
"groups": ["builtin", "external", "internal"]
}
],
"import/extensions": ["off", "ignorePackages"],
"@typescript-eslint/no-var-requires": "off",
"import/prefer-default-export": "off",
"no-useless-computed-key": "off",
"implicit-arrow-linebreak": "off",
"dot-notation": "off",
"function-paren-newline": "off",
"no-underscore-dangle": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/ban-types": "off",
"no-empty-function": "off",
"@typescript-eslint/no-empty-function": "off",
"import/no-unresolved": "off",
"vue/multi-word-component-names": "off",
"vue/no-setup-props-destructure": "off"
}
}