Browse Source

Allow 0 as magic number

pull/1/head
Luke Childs 9 years ago
parent
commit
634facaf22
  1. 2
      index.js

2
index.js

@ -99,7 +99,7 @@ module.exports = {
"no-loop-func": "error",
"no-magic-numbers": [
"error",
{ "ignore": [-1] }
{ "ignore": [-1, 0] }
],
"no-mixed-requires": "error",
"no-multi-spaces": "error",

Loading…
Cancel
Save