Skip to content

Commit 362b823

Browse files
authored
chore: Update lint deps (#16883)
* update * revert
1 parent 94e1667 commit 362b823

5 files changed

Lines changed: 201 additions & 227 deletions

File tree

.yarn/patches/eslint-plugin-import-npm-2.30.0-4fd74d3ee6.patch

Lines changed: 0 additions & 37 deletions
This file was deleted.

eslint/babel-eslint-parser/src/worker/configuration.cts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ function normalizeParserOptions(options: Options): InputOptions & {
2828
showIgnoredFiles?: boolean;
2929
} {
3030
return {
31-
sourceType: options.sourceType,
31+
// https://github.com/eslint/js/issues/519
32+
sourceType: options.sourceType as "module" | "script",
3233
filename: options.filePath,
3334
...options.babelOptions,
3435
parserOpts: {

eslint/babel-eslint-tests/test/integration/eslint-plugin-import.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ describe("https://github.com/babel/babel-eslint/issues/558", () => {
2929
),
3030
).toMatchObject([
3131
{ errorCount: 0, messages: [] },
32-
// this should have been { errorCount: 0, messages: [] },
33-
// pending https://github.com/import-js/eslint-plugin-import/pull/2996
34-
{ errorCount: 1 },
32+
{ errorCount: 0, messages: [] },
3533
{ errorCount: 0, messages: [] },
3634
]);
3735
} else {

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@babel/preset-typescript": "8.0.0-alpha.12",
3838
"@babel/runtime": "8.0.0-alpha.12",
3939
"@cspotcode/source-map-support": "^0.8.1",
40-
"@eslint/js": "^9.7.0",
40+
"@eslint/js": "^9.12.0",
4141
"@rollup/plugin-babel": "^6.0.4",
4242
"@rollup/plugin-commonjs": "^25.0.7",
4343
"@rollup/plugin-json": "^6.1.0",
@@ -51,15 +51,15 @@
5151
"c8": "^10.0.0",
5252
"charcodes": "^0.2.0",
5353
"core-js": "^3.36.1",
54-
"eslint": "^9.7.0",
54+
"eslint": "^9.12.0",
5555
"eslint-config-prettier": "^9.1.0",
5656
"eslint-formatter-codeframe": "^7.32.1",
5757
"eslint-import-resolver-node": "^0.3.9",
58-
"eslint-plugin-import": "patch:eslint-plugin-import@npm%3A2.30.0#~/.yarn/patches/eslint-plugin-import-npm-2.30.0-4fd74d3ee6.patch",
58+
"eslint-plugin-import": "^2.31.0",
5959
"eslint-plugin-jest": "^27.9.0",
60-
"eslint-plugin-n": "^17.9.0",
60+
"eslint-plugin-n": "^17.10.3",
6161
"eslint-plugin-regexp": "^2.6.0",
62-
"eslint-plugin-unicorn": "^55.0.0",
62+
"eslint-plugin-unicorn": "^56.0.0",
6363
"execa": "^9.0.0",
6464
"glob": "^10.3.10",
6565
"globals": "^15.9.0",
@@ -84,7 +84,7 @@
8484
"shelljs": "^0.8.5",
8585
"test262-stream": "^1.4.0",
8686
"typescript": "5.6.2",
87-
"typescript-eslint": "8.5.0"
87+
"typescript-eslint": "8.8.0"
8888
},
8989
"workspaces": [
9090
"codemods/*",

0 commit comments

Comments
 (0)