Skip to content

Commit 9846c3d

Browse files
committed
Merge branch 'master' into fix/child-context-language-options
2 parents 8ae1f8f + e251df5 commit 9846c3d

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,15 @@ jobs:
2525
- name: Checkout Repo
2626
uses: actions/checkout@v4
2727

28+
- name: Setup target Node.js to enable Corepack
29+
uses: actions/setup-node@v4
30+
with:
31+
node-version: ${{ matrix.node }}
32+
2833
- name: Enable Corepack
2934
run: corepack enable
3035

31-
- name: Setup Node.js ${{ matrix.node }}
36+
- name: Setup Node.js ${{ matrix.node }} with cache
3237
uses: actions/setup-node@v4
3338
with:
3439
node-version: ${{ matrix.node }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# eslint-plugin-import-x
22

3+
## 0.5.2
4+
5+
### Patch Changes
6+
7+
- [#93](https://github.com/un-ts/eslint-plugin-import-x/pull/93) [`64bf1a6`](https://github.com/un-ts/eslint-plugin-import-x/commit/64bf1a6be90c54a34115e83894de8b4e57ce6a33) Thanks [@SukkaW](https://github.com/SukkaW)! - fix: enable isolation parsing w/ typescript-eslint v8
8+
39
## 0.5.1
410

511
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-import-x",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": "Import with sanity.",
55
"repository": "git+https://github.com/un-ts/eslint-plugin-import-x",
66
"author": "JounQin <admin@1stg.me> (https://www.1stG.me)",

src/utils/parse.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,11 @@ export function parse(
8989
// "project" or "projects" in parserOptions. Removing these options means the parser will
9090
// only parse one file in isolate mode, which is much, much faster.
9191
// https://github.com/import-js/eslint-plugin-import/issues/1408#issuecomment-509298962
92+
93+
// TODO: prefer https://github.com/typescript-eslint/typescript-eslint/pull/9233 when typescript-eslint v8
94+
// become stable
9295
delete parserOptions.EXPERIMENTAL_useProjectService
96+
delete parserOptions.projectService
9397
delete parserOptions.project
9498
delete parserOptions.projects
9599

0 commit comments

Comments
 (0)