forked from JSEcoin/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
57 lines (55 loc) · 1.53 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
51
52
53
54
55
56
57
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/essential',
'@vue/airbnb',
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
strict: 0,
'global-require': 0,
'import/no-unresolved': 0,
'no-param-reassign': 0,
'no-shadow': 0,
'import/extensions': 0,
'import/newline-after-import': 0,
'no-multi-assign': 0,
// disable rules from base configurations
//'no-console': 'off',
'func-names': 0,
'comma-spacing': 0,
'space-infix-ops': 0,
'space-before-function-paren': 0,
'arrow-spacing': [1,{ before: true,after: true }],
'prefer-arrow-callback': 0,
'space-before-blocks': 0,
indent: 0,
'no-unused-vars': 0,
'no-multi-spaces': 0,
'prefer-template': 0,
'prefer-destructuring': 0,
'no-tabs': 0,
'spaced-comment': 0,
'max-len': 0,
'no-mixed-spaces-and-tabs': 0,
'linebreak-style': 0,
'import/no-dynamic-require': 0,
'no-undef': 0,
allowForLoopAfterthoughts: true,
'no-plusplus': 0,
'no-underscore-dangle': ['error', { allow: ['__static'] }],
'no-restricted-syntax': ['error', 'ForInStatement', 'LabeledStatement', 'WithStatement'],
// allow debugger during development
//'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
'no-bitwise': ['error', { int32Hint: true }],
'default-case': 0,
},
parserOptions: {
parser: 'babel-eslint',
},
};