Skip to content

Commit

Permalink
+ ESLint configuration: Ban Hammering var
Browse files Browse the repository at this point in the history
  • Loading branch information
sgobotta committed Oct 21, 2018
1 parent c99bfc2 commit d8493cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ module.exports = {
"no-debugger": process.env.NODE_ENV === "production" ? 2 : 0,
"no-undef": "error",
"no-unused-vars": "error",
quotes: ["error", "backtick"]
quotes: ["error", "backtick"],
"no-var": "error"
}
}

0 comments on commit d8493cb

Please sign in to comment.