-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
.eslintrc.js
41 lines (40 loc) · 1.02 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
const DWPE = process.env.NODE_ENV === 'production' ? 'error' : 'warn';
module.exports = {
root: true,
env: {
node: true,
},
extends: ['plugin:vue/essential', 'eslint:recommended'],
parserOptions: {
parser: 'babel-eslint',
},
rules: {
...Object.fromEntries(['vue/no-unused-components', 'no-unused-vars'].map(name => [name, DWPE])),
curly: ['error', 'multi-line'],
'no-console': [DWPE, { allow: ['warn', 'error'] }],
'no-empty': ['error', { allowEmptyCatch: true }],
'prefer-const': [
'error',
{
destructuring: 'all',
ignoreReadBeforeAssign: false,
},
],
'vue/multi-word-component-names': 'off',
},
overrides: [
{
files: ['tools/**/*.js', '*.config.js'],
rules: Object.fromEntries(['no-console'].map(name => [name, 'off'])),
},
{
files: ['**/*.vue'],
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
},
},
],
};