Skip to content

Commit 68ce667

Browse files
committed
update dependencies
1 parent 761212b commit 68ce667

File tree

9 files changed

+25
-17
lines changed

9 files changed

+25
-17
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core-js/modules/es.uint8-array.from-base64.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
'use strict';
2+
/* eslint-disable es/no-uint8array-frombase64 -- safe */
23
var $ = require('../internals/export');
34
var arrayFromConstructorAndList = require('../internals/array-from-constructor-and-list');
45
var $fromBase64 = require('../internals/uint8-from-base64');

packages/core-js/modules/es.uint8-array.set-from-base64.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
2-
/* eslint-disable es/no-nonstandard-typed-array-prototype-properties -- safe */
2+
/* eslint-disable es/no-uint8array-prototype-setfrombase64 -- safe */
33
var $ = require('../internals/export');
44
var $fromBase64 = require('../internals/uint8-from-base64');
55
var anUint8Array = require('../internals/an-uint8-array');

packages/core-js/modules/es.uint8-array.to-base64.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
2-
/* eslint-disable es/no-nonstandard-typed-array-prototype-properties -- safe */
2+
/* eslint-disable es/no-uint8array-prototype-tobase64 -- safe */
33
var $ = require('../internals/export');
44
var anObjectOrUndefined = require('../internals/an-object-or-undefined');
55
var anUint8Array = require('../internals/an-uint8-array');

packages/core-js/modules/es.uint8-array.to-hex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
2-
/* eslint-disable es/no-nonstandard-typed-array-prototype-properties -- safe */
2+
/* eslint-disable es/no-uint8array-prototype-tohex -- safe */
33
var $ = require('../internals/export');
44
var uncurryThis = require('../internals/function-uncurry-this');
55
var anUint8Array = require('../internals/an-uint8-array');

scripts/bundle-tests/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/eslint/eslint.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1645,9 +1645,16 @@ const forbidES2026BuiltIns = {
16451645
'es/no-array-fromasync': ERROR,
16461646
'es/no-asyncdisposablestack': ERROR,
16471647
'es/no-error-iserror': ERROR,
1648+
'es/no-math-sumprecise': ERROR,
16481649
'es/no-suppressederror': ERROR,
16491650
'es/no-symbol-asyncdispose': ERROR,
16501651
'es/no-symbol-dispose': ERROR,
1652+
'es/no-uint8array-frombase64': ERROR,
1653+
'es/no-uint8array-fromhex': ERROR,
1654+
'es/no-uint8array-prototype-setfrombase64': ERROR,
1655+
'es/no-uint8array-prototype-setfromhex': ERROR,
1656+
'es/no-uint8array-prototype-tobase64': ERROR,
1657+
'es/no-uint8array-prototype-tohex': ERROR,
16511658
// enforce the use of `Math.sumPrecise` instead of other summation methods
16521659
'math/prefer-math-sum-precise': OFF,
16531660
};

tests/eslint/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/eslint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"eslint-plugin-ascii": "^2.0.0",
1212
"eslint-plugin-canonical": "^5.1.3",
1313
"eslint-plugin-depend": "^1.2.0",
14-
"eslint-plugin-es-x": "^9.0.0",
14+
"eslint-plugin-es-x": "^9.1.0",
1515
"eslint-plugin-import-x": "^4.16.1",
1616
"eslint-plugin-jsonc": "^2.20.1",
1717
"eslint-plugin-math": "^0.13.0",

0 commit comments

Comments
 (0)