-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
26 lines (25 loc) · 807 Bytes
/
.eslintrc.js
File metadata and controls
26 lines (25 loc) · 807 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
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",
"no-undef": "off"
}
};