Skip to content

Commit

Permalink
[Dev Deps] update eslint, @ljharb/eslint-config, tape
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Dec 6, 2021
1 parent 9aee773 commit 28fba8f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"no-continue": 1,
"no-magic-numbers": 0,
"no-restricted-syntax": [2, "BreakStatement", "DebuggerStatement", "ForInStatement", "LabeledStatement", "WithStatement"],
"operator-linebreak": [2, "before"],
},

"overrides": [
Expand Down
1 change: 1 addition & 0 deletions lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ var encode = function encode(str, defaultEncoder, charset, kind, format) {

i += 1;
c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF));
/* eslint operator-linebreak: [2, "before"] */
out += hexTable[0xF0 | (c >> 18)]
+ hexTable[0x80 | ((c >> 12) & 0x3F)]
+ hexTable[0x80 | ((c >> 6) & 0x3F)]
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
"side-channel": "^1.0.4"
},
"devDependencies": {
"@ljharb/eslint-config": "^19.0.1",
"@ljharb/eslint-config": "^19.1.0",
"aud": "^1.1.5",
"browserify": "^16.5.2",
"eclint": "^2.8.1",
"eslint": "^8.2.0",
"eslint": "^8.4.0",
"evalmd": "^0.0.19",
"for-each": "^0.3.3",
"has-symbols": "^1.0.2",
Expand All @@ -49,7 +49,7 @@
"qs-iconv": "^1.0.4",
"safe-publish-latest": "^2.0.0",
"safer-buffer": "^2.1.2",
"tape": "^5.3.1"
"tape": "^5.3.2"
},
"scripts": {
"prepublishOnly": "safe-publish-latest && npm run dist",
Expand Down

0 comments on commit 28fba8f

Please sign in to comment.