-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc.js
More file actions
48 lines (47 loc) · 1.02 KB
/
.eslintrc.js
File metadata and controls
48 lines (47 loc) · 1.02 KB
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
42
43
44
45
46
47
48
module.exports = {
root: true,
env: {
node: true,
es6: true
},
parser: 'vue-eslint-parser',
extends: [
'plugin:vue/recommended',
'@vue/standard',
'plugin:vue/recommended',
'plugin:prettier/recommended',
'prettier/standard',
'prettier/vue'
],
plugins: ['flowtype'],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-unused-vars': 'warn',
'no-useless-escape': 'warn',
'no-unreachable': 'warn'
},
overrides: [
{
files: ['**/*.spec.js', 'tests/**/*'],
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module'
},
env: { jest: true },
globals: {
mount: false,
shallowMount: false,
shallowMountView: false,
createComponentMocks: false,
createModuleStore: false
},
rules: {
'no-undef': 'off'
}
}
]
}