File tree Expand file tree Collapse file tree 5 files changed +1575
-1020
lines changed Expand file tree Collapse file tree 5 files changed +1575
-1020
lines changed Original file line number Diff line number Diff line change @@ -2,31 +2,32 @@ module.exports = {
2
2
root : true ,
3
3
env : {
4
4
browser : true ,
5
- node : true
5
+ node : true ,
6
6
} ,
7
7
parserOptions : {
8
- parser : " babel-eslint"
8
+ parser : ' babel-eslint' ,
9
9
} ,
10
10
extends : [
11
- " eslint:recommended" ,
11
+ ' eslint:recommended' ,
12
12
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
13
13
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
14
- " plugin:vue/recommended" ,
15
- " plugin:prettier/recommended"
14
+ ' plugin:vue/recommended' ,
15
+ ' plugin:prettier/recommended' ,
16
16
] ,
17
17
// required to lint *.vue files
18
- plugins : [ " vue" ] ,
18
+ plugins : [ ' vue' ] ,
19
19
// add your custom rules here
20
20
rules : {
21
- "no-console" : "off" ,
22
- "vue/max-attributes-per-line" : "off" ,
23
- "prettier/prettier" : [
24
- "error" ,
21
+ 'no-console' : 'off' ,
22
+ 'vue/max-attributes-per-line' : 'off' ,
23
+ 'no-extra-parens' : 'off' ,
24
+ 'prettier/prettier' : [
25
+ 'error' ,
25
26
{
26
27
semi : false ,
27
28
singleQuote : true ,
28
- trailingComma : " es5"
29
- }
30
- ]
31
- }
32
- } ;
29
+ trailingComma : ' es5' ,
30
+ } ,
31
+ ] ,
32
+ } ,
33
+ }
You can’t perform that action at this time.
0 commit comments