Skip to content

Commit

Permalink
Enable no-extra-semi and no-redeclare rules
Browse files Browse the repository at this point in the history
  • Loading branch information
aitbw committed Jun 5, 2019
1 parent a697740 commit af8f6f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"no-console": ["warn", {
"allow": ["warn"]
}],
"no-extra-semi": 0,
"no-extra-semi": "error",
"no-global-assign": ["error", {
"exceptions": ["Tabs"]
}],
"no-redeclare": 0,
"no-redeclare": "error",
"no-shadow": 0,
"no-undef": "error",
"no-unused-vars": ["error", {
Expand Down

0 comments on commit af8f6f6

Please sign in to comment.