forked from VueDominicana/open-source
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
47 lines (47 loc) · 1.19 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
module.exports = {
root: true,
env: {
node: true
},
extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"],
parserOptions: {
parser: "babel-eslint"
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
semi: "error",
"prefer-const": "error",
"comma-dangle": "error",
"comma-spacing": "error",
"comma-style": "error",
curly: ["error", "all"],
"no-return-assign": 0,
"no-undef": 0,
indent: [2, 2, { SwitchCase: 1 }],
quotes: [
"error",
"double",
{
avoidEscape: true,
allowTemplateLiterals: true
}
],
"space-infix-ops": "error",
"no-multi-spaces": ["error", { exceptions: { Property: false } }],
"space-before-blocks": "error",
"keyword-spacing": "error",
"space-before-function-paren": ["error", "never"],
"space-in-parens": "error",
"object-curly-spacing": ["error", "always"],
"arrow-spacing": 0
},
overrides: [
{
files: ["**/__tests__/*.{j,t}s?(x)", "**/tests/unit/**/*.spec.{j,t}s?(x)"],
env: {
jest: true
}
}
]
};