-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Remove incorrect Ignore Hex Digits Regexp (#1277)
Minor **BREAKING** change. `cspell` used to ignore all words that had just hex characters `[a-f]`. This lead to issues like #1276. `cspell` will no longer ignore words with only hex characters. To avoid load of false positives (cases where a hex number was intended) some new patterns were added: - `CStyleHexValue`: C Style `0x[a-f0-9]+` - `CSSHexValue`: CSS Style `#[a-f0-9]+` - `CommitHash`: GitHub Style commit hashes. - this ignores hex only words that are 7 characters or longer might still lead to false negatives. - `UnicodeRef`: ignores `U+0000` style codes and ranges `U+0000-ffff` - `UUID`: ignores formatted UUIDs **Related Changes** * fix: Remove incorrect Ignore Hex Digits Regexp Fix: #1276 * fix: Ignore commit hashes and C Style Hex numbers * ci: speed up integration test for AdaDoom Do not check machine generated files. * fix: Ignore CSS Hex Values and UUIDs * fix: Add more common patterns to ignore Try to detect common hex and Unicode patterns to ignore. * test: simplify testing `bin.js` commands
- Loading branch information
Showing
30 changed files
with
313 additions
and
1,729 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.