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.
2 parents dcabdf5 + 4a971f6 commit f88fc21Copy full SHA for f88fc21
lib/recommended-rules.js
@@ -30,7 +30,11 @@ module.exports = {
30
31
'rules': {
32
// Disallow spaces between the function name or function keyword and the opening parenthesis
33
- "space-before-function-paren": ["error", "never"],
+ "space-before-function-paren": ["error", {
34
+ "anonymous": "never",
35
+ "named": "never",
36
+ "asyncArrow": "always",
37
+ }],
38
39
// Require return statements to either always or never specify values
40
'consistent-return': 'off',
0 commit comments