Skip to content

Commit

Permalink
updated space-before-function-paren
Browse files Browse the repository at this point in the history
  • Loading branch information
typhonrt committed Dec 6, 2020
1 parent 4387912 commit 631432f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions 3.0/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@
"semi": ["error", "always"],
"sort-vars": ["error", { "ignoreCase": true }],
"space-before-blocks": "error",
"space-before-function-paren": ["error", "never"],
"space-before-function-paren": ["error", {
"anonymous": "never",
"named": "never",
"asyncArrow": "ignore"
}],
"space-in-parens": "error",
"space-infix-ops": "error",
"space-unary-ops": ["error", { "words": true, "nonwords": false }],
Expand Down Expand Up @@ -104,6 +108,6 @@
"require-yield": "error",

/* Unused ES6 rules */
"prefer-reflect": "off",
"prefer-reflect": "off"
}
}

0 comments on commit 631432f

Please sign in to comment.