Skip to content

Commit 28fba8f

Browse files
committed
[Dev Deps] update eslint, @ljharb/eslint-config, tape
1 parent 9aee773 commit 28fba8f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.eslintrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"no-continue": 1,
1717
"no-magic-numbers": 0,
1818
"no-restricted-syntax": [2, "BreakStatement", "DebuggerStatement", "ForInStatement", "LabeledStatement", "WithStatement"],
19-
"operator-linebreak": [2, "before"],
2019
},
2120

2221
"overrides": [

lib/utils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ var encode = function encode(str, defaultEncoder, charset, kind, format) {
177177

178178
i += 1;
179179
c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF));
180+
/* eslint operator-linebreak: [2, "before"] */
180181
out += hexTable[0xF0 | (c >> 18)]
181182
+ hexTable[0x80 | ((c >> 12) & 0x3F)]
182183
+ hexTable[0x80 | ((c >> 6) & 0x3F)]

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
"side-channel": "^1.0.4"
3434
},
3535
"devDependencies": {
36-
"@ljharb/eslint-config": "^19.0.1",
36+
"@ljharb/eslint-config": "^19.1.0",
3737
"aud": "^1.1.5",
3838
"browserify": "^16.5.2",
3939
"eclint": "^2.8.1",
40-
"eslint": "^8.2.0",
40+
"eslint": "^8.4.0",
4141
"evalmd": "^0.0.19",
4242
"for-each": "^0.3.3",
4343
"has-symbols": "^1.0.2",
@@ -49,7 +49,7 @@
4949
"qs-iconv": "^1.0.4",
5050
"safe-publish-latest": "^2.0.0",
5151
"safer-buffer": "^2.1.2",
52-
"tape": "^5.3.1"
52+
"tape": "^5.3.2"
5353
},
5454
"scripts": {
5555
"prepublishOnly": "safe-publish-latest && npm run dist",

0 commit comments

Comments
 (0)