We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b82fca2 commit b9d70e8Copy full SHA for b9d70e8
.eslintrc
@@ -49,6 +49,7 @@
49
"guard-for-in": 2,
50
"no-alert": 2,
51
"no-caller": 2,
52
+ "no-confusing-arrow": 2,
53
"no-div-regex": 2,
54
"no-else-return": 2,
55
"no-eq-null": 2,
@@ -81,6 +82,7 @@
81
82
"no-void": 0,
83
"no-warning-comments": 2,
84
"no-with": 2,
85
+ "prefer-arrow-callback": 2,
86
"radix": 2,
87
"vars-on-top": 0,
88
"wrap-iife": 2,
@@ -105,6 +107,9 @@
105
107
"indent": [2, 2, {
106
108
"SwitchCase": 1
109
}],
110
+ "arrow-body-style": [2, "as-needed"],
111
+ "arrow-parens": [2, "as-needed"],
112
+ "arrow-spacing": 2,
113
"brace-style": 2,
114
"camelcase": 0,
115
"comma-spacing": 2,
0 commit comments