Browse Source

Allow 1 as magic number

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

2
index.js

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

Loading…
Cancel
Save