-
Notifications
You must be signed in to change notification settings - Fork 13
/
.eslintrc.js
53 lines (47 loc) · 1.17 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
module.exports = {
env: {
browser: true,
es2020: true,
node: true
},
extends: [
"plugin:vue/recommended",
"airbnb-base",
"plugin:prettier/recommended"
],
parserOptions: {
ecmaVersion: 6,
sourceType: "module",
parser: "@babel/eslint-parser"
},
plugins: ["vue", "prettier"],
rules: {
"prettier/prettier": ["error", { trailingComma: "none" }],
"no-unexpected-multiline": "error",
"no-param-reassign": 1,
eqeqeq: "error",
"max-len": ["error", { code: 140, ignoreUrls: true }],
"comma-dangle": ["error", "never"],
quotes: ["error", "double", { allowTemplateLiterals: true }],
"import/no-extraneous-dependencies": "warn",
"consistent-return": "warn",
"no-plusplus": 0,
"no-underscore-dangle": 0,
"no-restricted-syntax": "warn",
"no-continue": "warn",
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off"
},
root: true,
overrides: [
{
files: [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
env: {
jest: true
}
}
]
};