Skip to content

Commit

Permalink
feat(core): disable no-undefined (#457)
Browse files Browse the repository at this point in the history
Because there are many cases to want to use `undefined`.

See <https://eslint.org/docs/rules/no-undefined>
  • Loading branch information
ybiquitous authored Sep 10, 2019
1 parent 2c15911 commit d25cd2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/core/variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
"no-shadow-restricted-names": "error",
"no-undef": "error",
"no-undef-init": "error",
"no-undefined": "error",
"no-undefined": "off",
"no-unused-vars": "error",
"no-use-before-define": "error",
},
Expand Down

0 comments on commit d25cd2c

Please sign in to comment.