Skip to content

Commit 4517639

Browse files
committed
update dependencies
1 parent 18ddb37 commit 4517639

File tree

6 files changed

+31
-18
lines changed

6 files changed

+31
-18
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.

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: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1273,7 +1273,6 @@ const forbidCompletelyNonExistentBuiltIns = {
12731273
'isConstructor',
12741274
] }],
12751275
'es/no-nonstandard-iterator-properties': [ERROR, { allow: [
1276-
'concat',
12771276
'range',
12781277
'zip',
12791278
'zipKeyed',
@@ -1686,6 +1685,7 @@ const forbidES2026BuiltIns = {
16861685
'es/no-array-fromasync': ERROR,
16871686
'es/no-asyncdisposablestack': ERROR,
16881687
'es/no-error-iserror': ERROR,
1688+
'es/no-iterator-concat': ERROR,
16891689
'es/no-math-sumprecise': ERROR,
16901690
'es/no-suppressederror': ERROR,
16911691
'es/no-symbol-asyncdispose': ERROR,
@@ -1739,6 +1739,17 @@ const forbidES2025IntlBuiltIns = {
17391739
'es/no-intl-durationformat': ERROR,
17401740
};
17411741

1742+
const forbidES2026IntlBuiltIns = {
1743+
'es/no-intl-locale-prototype-firstdayofweek': ERROR,
1744+
'es/no-intl-locale-prototype-getcalendars': ERROR,
1745+
'es/no-intl-locale-prototype-getcollations': ERROR,
1746+
'es/no-intl-locale-prototype-gethourcycles': ERROR,
1747+
'es/no-intl-locale-prototype-getnumberingsystems': ERROR,
1748+
'es/no-intl-locale-prototype-gettextinfo': ERROR,
1749+
'es/no-intl-locale-prototype-gettimezones': ERROR,
1750+
'es/no-intl-locale-prototype-getweekinfo': ERROR,
1751+
};
1752+
17421753
const forbidSomeES2025Syntax = {
17431754
'es/no-regexp-duplicate-named-capturing-groups': ERROR,
17441755
'es/no-regexp-modifiers': ERROR,
@@ -1876,6 +1887,7 @@ const nodePackages = {
18761887
...forbidES2022IntlBuiltIns,
18771888
...forbidES2023IntlBuiltIns,
18781889
...forbidES2025IntlBuiltIns,
1890+
...forbidES2026IntlBuiltIns,
18791891
...forbidSomeES2025Syntax,
18801892
};
18811893

@@ -1891,6 +1903,7 @@ const nodeDev = {
18911903
'es/no-intl-supportedvaluesof': ERROR,
18921904
...forbidES2023IntlBuiltIns,
18931905
...forbidES2025IntlBuiltIns,
1906+
...forbidES2026IntlBuiltIns,
18941907
// ReDoS vulnerability check
18951908
'redos/no-vulnerable': OFF,
18961909
// prefer top-level await

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.4.0",
14-
"eslint-plugin-es-x": "^9.1.2",
14+
"eslint-plugin-es-x": "^9.2.0",
1515
"eslint-plugin-import-x": "^4.16.1",
1616
"eslint-plugin-jsonc": "^2.21.0",
1717
"eslint-plugin-math": "^0.13.1",

tests/observables/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.

0 commit comments

Comments
 (0)