-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
41 lines (41 loc) · 1.1 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
module.exports = {
root: true,
env: {
node: true,
browser: true,
},
extends: ["plugin:vue/essential", "@vue/airbnb", "plugin:prettier/recommended"],
parserOptions: {
parser: "babel-eslint",
},
// plugins: ["vue"],
rules: {
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"no-unused-expressions": "off",
"no-param-reassign": "off",
"import/no-extraneous-dependencies": ["off"],
"no-restricted-syntax": ["off", "ForOfStatement"],
// "import/no-extraneous-dependencies": [
// "warn",
// { devDependencies: false, optionalDependencies: false, peerDependencies: false },
// ],
"no-use-before-define": "warn",
"consistent-return": "warn",
"no-unused-vars": ["warn"],
// "no-unused-vars": ["off", { vars: "all", args: "after-used", ignoreRestSiblings: false }],
"prettier/prettier": [
"error",
{
arrowParens: "always",
bracketSpacing: true,
printWidth: 80,
semi: true,
tabWidth: 3,
trailingComma: "all",
useTabs: true,
endOfLine: "auto",
},
],
},
};