forked from arkntools/arknights-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
42 lines (41 loc) · 999 Bytes
/
.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
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-console', 'no-unused-vars'].map(name => [name, DWPE]),
),
curly: ['error', 'multi-line'],
'no-empty': ['error', { allowEmptyCatch: true }],
'prefer-const': [
'error',
{
destructuring: 'all',
ignoreReadBeforeAssign: false,
},
],
'vue/multi-word-component-names': 'off',
},
overrides: [
{
files: ['tools/**/*.js'],
rules: Object.fromEntries(['no-console'].map(name => [name, 'off'])),
},
{
files: ['**/*.vue'],
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
},
},
],
};