-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
43 lines (43 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
42
43
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/essential',
'@vue/airbnb',
],
rules: {
'no-console': 'off',
'no-debugger': 'off',
'no-mixed-operators': 'off',
'no-plusplus': 'off',
'no-param-reassign': 'off',
'class-methods-use-this': 'off',
'max-len': 'off',
'no-alert': 'off',
'comma-dangle': 'off',
'no-unused-expressions': 'off',
semi: 'off',
'arrow-parens': 'off',
'arrow-spacing': 'off',
'no-unused-vars': 'off',
'import/no-extraneous-dependencies': 'off',
'space-before-function-paren': 'off',
'no-trailing-spaces': 'off',
'linebreak-style': 'off',
'consistent-return': 'off',
'key-spacing': 'off',
'no-irregular-whitespace': 'off',
'object-curly-spacing': 'off',
'object-curly-newline': 'off',
'import/first': 'off',
'import/extensions': 'off',
'prefer-destructuring': 'off',
'radix': 'off',
'prefer-template': 'off',
},
parserOptions: {
parser: 'babel-eslint',
},
};