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 = {
5454 allowNullableString : true
5555 }
5656 ] ,
57+ 'arrow-parens' : [
58+ "error" ,
59+ "as-needed"
60+ ] ,
5761 'import/extensions' : 'off' ,
5862 'import/prefer-default-export' : 'off' ,
5963 'indent' : [
@@ -63,6 +67,10 @@ module.exports = {
6367 SwitchCase : 1 ,
6468 } ,
6569 ] ,
70+ 'jsx-quotes' : [
71+ 'error' ,
72+ 'prefer-single'
73+ ] ,
6674 'jsx-a11y/tabindex-no-positive' : [
6775 'warn'
6876 ] ,
@@ -86,6 +94,12 @@ module.exports = {
8694 functions : false ,
8795 }
8896 ] ,
97+ 'object-curly-newline' : 'off' ,
98+ 'operator-linebreak' : [
99+ 'error' ,
100+ 'before'
101+ ] ,
102+ 'padded-blocks' : 'off' ,
89103 "padding-line-between-statements" : [
90104 'error' ,
91105 { blankLine : 'always' , prev : 'directive' , next : '*' } ,
You can’t perform that action at this time.
0 commit comments