-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
27 lines (26 loc) · 910 Bytes
/
.eslintrc.js
File metadata and controls
27 lines (26 loc) · 910 Bytes
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
// https://dev.to/ferasdawod/setting-up-eslint-for-a-vuejs-project-using-vs-code-i54
module.exports = {
root: true,
env: {
// this section will be used to determine which APIs are available to us
// (i.e are we running in a browser environment or a node.js env)
node: true,
browser: true
},
parserOptions: {
parser: "babel-eslint",
// specifying a module sourcetype prevent eslint from marking import statements as errors
sourceType: "module"
},
extends: [
// use the recommended rule set for both plain javascript and vue
"eslint:recommended",
"plugin:vue/recommended"
],
rules: {
// we should always disable console logs and debugging in production
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"vue/max-attributes-per-line": "off"
}
};