File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff 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 }}
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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)" ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments