Skip to content

Commit

Permalink
[utils] [fix] parse: also delete parserOptions.projectService
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysak0CZ authored and ljharb committed Aug 23, 2024
1 parent 09476d7 commit c387276
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
### Changed
- [types] use shared config (thanks [@ljharb])

### Fixed
- `parse`: also delete `parserOptions.projectService` ([#3039], thanks [@Mysak0CZ])

## v2.8.1 - 2024-02-26

### Fixed
Expand Down Expand Up @@ -142,6 +145,7 @@ Yanked due to critical issue with cache key resulting from #839.
### Fixed
- `unambiguous.test()` regex is now properly in multiline mode

[#3039]: https://github.com/import-js/eslint-plugin-import/pull/3039
[#2963]: https://github.com/import-js/eslint-plugin-import/pull/2963
[#2755]: https://github.com/import-js/eslint-plugin-import/pull/2755
[#2714]: https://github.com/import-js/eslint-plugin-import/pull/2714
Expand Down Expand Up @@ -188,6 +192,7 @@ Yanked due to critical issue with cache key resulting from #839.
[@manuth]: https://github.com/manuth
[@maxkomarychev]: https://github.com/maxkomarychev
[@mgwalker]: https://github.com/mgwalker
[@Mysak0CZ]: https://github.com/Mysak0CZ
[@nicolo-ribaudo]: https://github.com/nicolo-ribaudo
[@pmcelhaney]: https://github.com/pmcelhaney
[@sergei-startsev]: https://github.com/sergei-startsev
Expand Down
1 change: 1 addition & 0 deletions utils/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ exports.default = function parse(path, content, context) {
// only parse one file in isolate mode, which is much, much faster.
// https://github.com/import-js/eslint-plugin-import/issues/1408#issuecomment-509298962
delete parserOptions.EXPERIMENTAL_useProjectService;
delete parserOptions.projectService;
delete parserOptions.project;
delete parserOptions.projects;

Expand Down

0 comments on commit c387276

Please sign in to comment.