File tree 1 file changed +2
-8
lines changed
1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 1
- // http://eslint.org/docs/user-guide/configuring
2
-
3
1
module . exports = {
4
2
root : true ,
5
3
parserOptions : {
6
4
parser : 'babel-eslint' ,
7
5
ecmaVersion : 2017 ,
8
- sourceType : " module"
6
+ sourceType : ' module'
9
7
} ,
10
8
env : {
11
9
browser : true ,
12
10
jest : true
13
11
} ,
14
- // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
15
12
extends : [
16
13
'standard' ,
17
14
'plugin:vue/recommended' ,
18
15
'eslint:recommended' ,
19
16
'prettier/vue' ,
20
17
'plugin:prettier/recommended'
21
18
] ,
22
- // required to lint *.vue files
23
19
plugins : [
24
20
'vue'
25
21
] ,
26
- // add your custom rules here
27
22
rules : {
28
- // allow paren-less arrow functions
23
+ 'no-console' : 'off' ,
29
24
'arrow-parens' : 0 ,
30
- // allow async-await
31
25
'generator-star-spacing' : 0 ,
32
26
'vue/html-closing-bracket-newline' : 0 ,
33
27
'vue/singleline-html-element-content-newline' : 0 ,
You can’t perform that action at this time.
0 commit comments