-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.eslintrc.js
60 lines (59 loc) · 1.36 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
// https://eslint.org/docs/user-guide/configuring
const path = require("path");
module.exports = {
root: true,
parserOptions: {
parser: "@babel/eslint-parser",
ecmaVersion: 2017,
sourceType: "module",
},
plugins: ["html", "vue"],
extends: [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:vue/vue3-recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:storybook/recommended",
],
env: {
browser: true,
node: true,
commonjs: true,
es6: true,
},
rules: {
// allow async-await
"generator-star-spacing": "off",
// don't require .vue extension when importing
"import/extensions": [
"error",
"always",
{
js: "never",
},
],
"no-unused-vars": ["error", { ignoreRestSiblings: true }],
// allow debugger during development
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"vue/html-indent": "off",
"vue/html-self-closing": "off",
"vue/max-attributes-per-line": "off",
"vue/multi-word-component-names": [
"error",
{
ignores: ["Finder"],
},
],
},
settings: {
"import/resolver": {
"eslint-import-resolver-custom-alias": {
extensions: [".js", ".vue", ".json"],
alias: {
"@": path.resolve("src"),
},
},
},
},
};