-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
50 lines (50 loc) · 1.13 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
47
48
49
50
module.exports = {
env: {
node: true,
browser: true,
es2020: true,
},
extends: ['eslint:recommended', 'plugin:vue/essential'],
parserOptions: {
ecmaVersion: 11,
sourceType: 'module',
},
plugins: ['vue'],
rules: {
'no-console': 'warn',
'no-debugger': 'warn',
'no-shadow': 'warn',
'no-bitwise': 'off',
'no-cond-assign': 'off',
'no-param-reassign': 'off',
'no-underscore-dangle': 'off',
'no-unused-expressions': 'off',
'no-async-promise-executor': 'off',
'no-return-await': 'off',
'no-plusplus': 'off',
'no-script-url': 'off',
'no-nested-ternary': 'off',
'no-return-assign': 'off',
'camelcase': 'off',
'func-names': 'off',
'eqeqeq': 'warn',
'radix': 'off',
'global-require': 'off',
'import/prefer-default-export': 'off',
'default-case': 'warn',
'no-unused-vars': [
'error',
{
vars: 'all',
args: 'after-used',
ignoreRestSiblings: true,
varsIgnorePattern: '^h$',
},
],
},
globals: {
$: false,
h: false,
GIT_HASH: false, // inject via webpack defined plugin
},
};