-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
42 lines (42 loc) · 1.14 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
module.exports = {
root: true,
env: {
node: true,
},
rules: {
'no-console': 'off',
'no-debugger': 'off',
'no-param-reassign': 0,
'indent': 0,
'class-methods-use-this': 0,
'camelcase': 0,
'object-curly-newline': 0,
'object-curly-spacing': 0,
'no-unused-expressions': 0,
'no-restricted-properties': 0,
'vue/html-indent': 0,
'vue/require-default-prop': 0,
'vue/component-name-in-template-casing': 0,
'vue/html-closing-bracket-newline': 0,
'vue/html-closing-bracket-spacing': 0,
'vue/html-self-closing': 0,
'nonblock-statement-body-position': 0,
'curly': 0,
'import/extensions': 0,
'arrow-parens': 0,
'no-plusplus': 0,
'no-confusing-arrow': 0,
'max-len': 0,
'space-before-function-paren': 0,
'no-case-declarations': 0,
},
parserOptions: {
parser: 'babel-eslint',
},
extends: [
'plugin:vue/recommended',
'plugin:vue/essential',
'plugin:vue/strongly-recommended',
'@vue/airbnb',
],
};