Skip to content

Commit

Permalink
Update eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel2B committed Aug 12, 2021
1 parent e348668 commit 4792de2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,14 @@
"rules": {
"semi": [2, "always"],
"comma-dangle": [2, "always-multiline"],
"space-before-function-paren": ["error", "never"],
"space-before-function-paren": [
"error",
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}
],
"eqeqeq": ["warn", "always"],
"indent": [
"warn",
Expand Down

0 comments on commit 4792de2

Please sign in to comment.