-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
40 lines (40 loc) · 891 Bytes
/
.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
module.exports = {
root: true,
env: {
node: true
},
extends: [
"eslint:recommended",
"plugin:vue/recommended",
"plugin:prettier-vue/recommended",
"plugin:storybook/recommended",
"prettier"
],
parserOptions: {
parser: "babel-eslint",
ecmaVersion: 2020
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"prettier-vue/prettier": [
"error",
{
// Override all options of `prettier` here
// @see https://prettier.io/docs/en/options.html
// printWidth: 100,
// singleQuote: true,
// semi: false,
// trailingComma: 'es5',
}
]
},
overrides: [
{
files: ["**/*.spec.js", "**/*.spec.jsx", "**/test/*"],
env: {
jest: true
}
}
]
};