Skip to content

Commit

Permalink
[Dev Deps] update eslint, @ljharb/eslint-config
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 2, 2019
1 parent 52a5131 commit 9be5c3a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 17 deletions.
12 changes: 11 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,15 @@
}],
"no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"],
"operator-linebreak": [2, "before"],
}
},

"overrides": [
{
"files": "test/**",
"rules": {
"max-lines-per-function": 0,
"max-nested-callbacks": 0,
},
},
],
}
2 changes: 1 addition & 1 deletion helpers/RegExpStringIterator.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var GetIntrinsic = require('es-abstract/GetIntrinsic');
var hasSymbols = require('has-symbols')();

var hidden = require('./hidden')();
var undefined; // eslint-disable-line no-shadow-restricted-names
var undefined;

var RegExpStringIterator = function RegExpStringIterator(R, S, global, fullUnicode) {
if (ES.Type(S) !== 'String') {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
},
"devDependencies": {
"@es-shims/api": "^2.1.2",
"@ljharb/eslint-config": "^14.0.2",
"@ljharb/eslint-config": "^14.1.0",
"es5-shim": "^4.5.13",
"es6-shim": "^0.35.5",
"eslint": "^6.3.0",
"eslint": "^6.5.1",
"evalmd": "^0.0.18",
"foreach": "^2.0.5",
"functions-have-names": "^1.1.1",
Expand Down
13 changes: 0 additions & 13 deletions test/.eslintrc

This file was deleted.

0 comments on commit 9be5c3a

Please sign in to comment.