File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,10 @@ module.exports = {
54
54
allowNullableString : true
55
55
}
56
56
] ,
57
+ 'arrow-parens' : [
58
+ "error" ,
59
+ "as-needed"
60
+ ] ,
57
61
'import/extensions' : 'off' ,
58
62
'import/prefer-default-export' : 'off' ,
59
63
'indent' : [
@@ -63,6 +67,10 @@ module.exports = {
63
67
SwitchCase : 1 ,
64
68
} ,
65
69
] ,
70
+ 'jsx-quotes' : [
71
+ 'error' ,
72
+ 'prefer-single'
73
+ ] ,
66
74
'jsx-a11y/tabindex-no-positive' : [
67
75
'warn'
68
76
] ,
@@ -86,6 +94,12 @@ module.exports = {
86
94
functions : false ,
87
95
}
88
96
] ,
97
+ 'object-curly-newline' : 'off' ,
98
+ 'operator-linebreak' : [
99
+ 'error' ,
100
+ 'before'
101
+ ] ,
102
+ 'padded-blocks' : 'off' ,
89
103
"padding-line-between-statements" : [
90
104
'error' ,
91
105
{ blankLine : 'always' , prev : 'directive' , next : '*' } ,
You can’t perform that action at this time.
0 commit comments