Skip to content

Commit

Permalink
[Dev Deps] update eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jul 6, 2016
1 parent 3ee66c5 commit e5e9d91
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"eqeqeq": [2, "allow-null"],
"id-length": [2, { "min": 1, "max": 23 }],
"max-depth": [2, 5],
"max-nested-callbacks": [2, 3],
"max-statements": [1, 10],
"max-statements-per-line": [2, { "max": 2 }],
"no-extra-parens": [1],
Expand All @@ -17,7 +16,6 @@
"number": false,
"string": true
}],
"no-magic-numbers": [0],
"no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"]
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"make-arrow-function": "^1.1.0",
"make-generator-function": "^1.1.0",
"semver": "^5.2.0",
"eslint": "^3.0.0",
"eslint": "^3.0.1",
"@ljharb/eslint-config": "^6.0.0",
"nsp": "^2.5.0",
"replace": "^0.3.0",
Expand Down
4 changes: 3 additions & 1 deletion test/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"rules": {
"max-lines": 0,
"max-nested-callbacks": [2, 3],
"max-statements-per-line": [2, { "max": 2 }],
"max-statements": [1, 25]
"max-statements": [1, 25],
"no-magic-numbers": 0
}
}

0 comments on commit e5e9d91

Please sign in to comment.