File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ module.exports = {
84
84
{
85
85
arrays : 'always-multiline' ,
86
86
objects : 'always-multiline' ,
87
- imports : 'never ' ,
87
+ imports : 'always-multiline ' ,
88
88
exports : 'never' ,
89
89
functions : 'never' ,
90
90
} ,
@@ -115,6 +115,8 @@ module.exports = {
115
115
// Disallow empty block statements
116
116
'no-empty' : [ 'error' , { allowEmptyCatch : true } ] ,
117
117
118
+ 'no-extra-parens' : 'off' ,
119
+
118
120
// Disallow `if` statements as the only statement in `else` blocks
119
121
'no-lonely-if' : 'error' ,
120
122
@@ -139,7 +141,13 @@ module.exports = {
139
141
'object-curly-spacing' : [ 'error' , 'always' ] ,
140
142
141
143
// Require single quotes
142
- quotes : [ 'error' , 'single' ] ,
144
+ quotes : [
145
+ 'error' ,
146
+ 'single' ,
147
+ {
148
+ avoidEscape : true ,
149
+ } ,
150
+ ] ,
143
151
144
152
// Require space before blocks
145
153
'space-before-blocks' : [ 'error' , 'always' ] ,
You can’t perform that action at this time.
0 commit comments