Update dependency cspell to v10.3.3 - #99
Merged
Merged
Conversation
jnonino
approved these changes
Sep 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 contains the following updates:
10.3.2→10.3.3Release Notes
streetsidesoftware/cspell (cspell)
v10.3.3Compare Source
Fixes
fix: Add `--json` option to check text for use with AI (#9254)
fix: Add
--jsonoption to check text for use with AI (#9254)This pull request adds support for a
--jsonoutput mode to thecheckCLI command, enabling results to be emitted as structured JSON per file. It also introduces comprehensive test coverage for the new JSON output behavior, including error handling and exit code logic.CLI Enhancements:
--jsonflag to thecheckcommand, allowing users to receive results in JSON format. This includes proper handling of multiple files and error cases, such as missing files. [1] [2]--no-exit-codeflag. [1] [2]Implementation Details:
processRequestAnsifor standard output andprocessRequestJSONfor JSON output, with the latter aggregating results and errors per file. [1] [2]Testing Improvements:
--jsonscenarios, such as files with spelling errors, missing files, and the interaction with--no-exit-code. [1] [2]fix: Mark ParsedTags as read only. (#9253)
fix: Mark ParsedTags as read only. (#9253)
This pull request makes a small but important change to the
ParsedTextinterface in several files, improving type safety by marking thetagsproperty as a read-only type. This ensures that thetagsassociated with a parsed text segment cannot be modified after creation.tagsproperty in theParsedTextinterface to useReadonly<ParsedTags>instead ofParsedTags, making the tags immutable in the following files:packages/cspell-types/api/Parser/index.d.mtspackages/cspell-types/api/index.d.mtspackages/cspell-types/src/Parser/parser.tsfix: Make sure Parser and DocumentParser can be used together. (#9252)
fix: Make sure Parser and DocumentParser can be used together. (#9252)
This pull request enhances the parser interface definitions in the
cspell-typespackage to provide better flexibility and clarity for parser implementations. The main changes introduce optionalparseDocumentandparsemethods to both theParserandDocumentParserinterfaces, across both type declaration and source files.Parser interface enhancements:
parseDocumentmethod to theParserinterface, allowing parsers to optionally implement document-based parsing. (packages/cspell-types/api/Parser/index.d.mts[1]packages/cspell-types/api/index.d.mts[2]packages/cspell-types/src/Parser/parser.ts[3]parsemethod to theDocumentParserinterface, enabling parsers to optionally implement content-and-filename-based parsing. (packages/cspell-types/api/Parser/index.d.mts[1]packages/cspell-types/api/index.d.mts[2]packages/cspell-types/src/Parser/parser.ts[3]Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.