-
Notifications
You must be signed in to change notification settings - Fork 16
/
.eslintrc.js
41 lines (41 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
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)
browser: true,
node: true,
},
globals: { RTCMultiConnection: true },
parser: 'vue-eslint-parser',
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',
'plugin:import/errors',
'plugin:import/warnings',
'begin',
'begin/vue',
],
rules: {
// we should always disable console logs and debugging in production
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'import/extensions': [ 'error', 'ignorePackages', { js: 'never' } ],
},
settings: {
'import/resolver': {
alias: {
map: [
[ '@', './src' ],
],
extensions: [ '.vue', '.json', '.js' ],
},
},
},
};