fix: opening individual modules in monorepo #207
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR fixes two related regressions in the IntelliJ Biome plugin’s configuration resolution logic (see issue #201):
Restore upward search to the project root
Problem (v1.7.2): findNearestFile no longer included the specified root directory in its upward traversal, causing the LSP server not to start when opening only a submodule.
Solution: Adjusted the loop in findNearestFile so that it continues searching until it reaches the root (if provided) or the filesystem root, and includes root in the search.
Allow submodule configs in findNearestBiomeConfig
Problem (v1.9.0): After PR #196, findNearestBiomeConfig filtered out any biome.json that wasn’t marked as a “root” config, even when opening a single submodule, so local configs were ignored.
Solution: Updated the predicate to skip the isRootConfig() check whenever a root directory is supplied—i.e. when operating in submodule mode, the first biome.json found is accepted regardless of its root flag or extends setting. In full-monorepo mode (root == null), the original isRootConfig() requirement remains.