chore(deps): update dependency cspell to v10.3.0 - #179
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
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.2.2→10.3.0Release Notes
streetsidesoftware/cspell (cspell)
v10.3.0Compare Source
Features
feat: Add an option to set the kind of dictionary file (#9178)
feat: Add an option to set the kind of dictionary file (#9178)
This pull request introduces support for the new
kindproperty in dictionary definitions, enabling explicit specification of dictionary types such aswords,flag-words, andignore-words.{ "version": "0.2", "language": "en-US", "caseSensitive": false, "dictionaryDefinitions": [ { "name": "forbidden-spelling", "path": "./forbidden-spelling.txt", "kind": "flag-words" } ], "dictionaries": ["forbidden-spelling"] }forbidden-spelling.txtIt updates the JSON schema, dictionary loading logic, and adds new APIs and tests to handle these kinds, including support for loading forbidden (flag) words from trie files.
Schema and API Enhancements:
kindproperty to dictionary definitions in thecspell.schema.jsonschema, allowing configuration of dictionary type aswords,flag-words, orignore-words[1] [2] [3] [4] [5].kindproperty, ensuring correct dictionary instantiation based on its value [1] [2] [3] [4].Flag Words Dictionary Support:
createFlagWordsDictionaryFromTrieFileto allow creating forbidden words dictionaries directly from trie files, and exposed this function in the public API [1] [2] [3] [4] [5].kindbehaviors and for loading flag words from trie files, ensuring correct forbidden word detection and suggestion handling [1] [2].Sample and Fixture Updates:
flag-words.txtto demonstrate and test the flag words functionality.These changes collectively provide more flexible and explicit dictionary configuration, improve forbidden word handling, and ensure robust support for new and existing dictionary formats.
Fixes
fix: Only hide code-like partial words (#9163)
fix: Only hide code-like partial words (#9163)
Documentation
feat: Add an option to set the kind of dictionary file (#9178)
feat: Add an option to set the kind of dictionary file (#9178)
This pull request introduces support for the new
kindproperty in dictionary definitions, enabling explicit specification of dictionary types such aswords,flag-words, andignore-words.{ "version": "0.2", "language": "en-US", "caseSensitive": false, "dictionaryDefinitions": [ { "name": "forbidden-spelling", "path": "./forbidden-spelling.txt", "kind": "flag-words" } ], "dictionaries": ["forbidden-spelling"] }forbidden-spelling.txtIt updates the JSON schema, dictionary loading logic, and adds new APIs and tests to handle these kinds, including support for loading forbidden (flag) words from trie files.
Schema and API Enhancements:
kindproperty to dictionary definitions in thecspell.schema.jsonschema, allowing configuration of dictionary type aswords,flag-words, orignore-words[1] [2] [3] [4] [5].kindproperty, ensuring correct dictionary instantiation based on its value [1] [2] [3] [4].Flag Words Dictionary Support:
createFlagWordsDictionaryFromTrieFileto allow creating forbidden words dictionaries directly from trie files, and exposed this function in the public API [1] [2] [3] [4] [5].kindbehaviors and for loading flag words from trie files, ensuring correct forbidden word detection and suggestion handling [1] [2].Sample and Fixture Updates:
flag-words.txtto demonstrate and test the flag words functionality.These changes collectively provide more flexible and explicit dictionary configuration, improve forbidden word handling, and ensure robust support for new and existing dictionary formats.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ 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.