Skip to content

Commit

Permalink
Don't warn for setting variables to undefined
Browse files Browse the repository at this point in the history
The client still prefers "undefined" to "null"
  • Loading branch information
Zarel committed Nov 15, 2017
1 parent 9ebde91 commit 9c0491a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ module.exports = {
"no-restricted-globals": ["error", "Proxy", "Reflect", "Symbol", "WeakSet"],
"no-shadow-restricted-names": "error",
"no-shadow": "off",
"no-undef-init": "warn",
"no-undef-init": "off",
"no-undef": ["error", {"typeof": true}],
"no-undefined": "off",
"no-unused-vars": "off",
Expand Down

0 comments on commit 9c0491a

Please sign in to comment.