Skip to content

v6: improve Spelling rules by using word boundaries

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 12 Nov 14:47
By using regex word boundary (\b) delimiters, the spelling rule
applies to individual words rather than a word that might contain the
regex filter. For example, "\b[cC]he\b" will match only "che" and "Che"
rather than a regex filter without word boundary delimiters, for
example, "[cC]he" that would match misspelled words that contain the
regex, such as "aache" or "chemitsry".