forked from owdproject/owd-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
46 lines (45 loc) · 1.19 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
42
43
44
45
46
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true,
mocha: true
},
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
extends: ['eslint:recommended', 'plugin:vue/essential', 'plugin:vue/strongly-recommended'],
// required to lint *.vue files
plugins: [
'vue'
],
// check if imports actually resolve
settings: {
'import/resolver': {
webpack: {
config: 'build/webpack.base.conf.js'
}
}
},
// add your custom rules here
'rules': {
'prefer-const': ['error', {
'destructuring': 'any',
'ignoreReadBeforeAssign': true
}],
'quotes': [2, 'single', 'avoid-escape'],
'max-len': 0,
'no-undef': 0,
'camelcase': 0,
'no-underscore-dangle': 0,
'no-var': 2,
'no-unused-vars': ['error', { 'varsIgnorePattern': '[iI]gnored|next' }],
'comma-dangle': 1,
'no-multi-str': 1,
'no-mixed-operators': 1,
'vue/no-reserved-keys': 0,
'vue/require-default-prop': 0
}
}