Skip to content

Releases: emteelb/vale-at-red-hat

v15: improve Spelling rule filters by using word boundaries

17 Mar 23:44
Compare
Choose a tag to compare
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".

This commit also combines multiple related filters that share a common
word base, for example, a single filter `"[bB]reakpoint(s)?` rather than
`[bB]reakpoint` and `[bB]reakpoints`.

v14: improve Spelling rule filters by using word boundaries

17 Mar 22:53
Compare
Choose a tag to compare
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".

This commit also combines multiple related filters that share a common
word base, for example, a single filter `"[bB]reakpoint(s)?` rather than
`[bB]reakpoint` and `[bB]reakpoints`.

v13

17 Mar 22:44
00f7600
Compare
Choose a tag to compare
v13
Merge branch 'redhat-documentation:main' into main

v12: improve Spelling rule filters by using word boundaries

05 Mar 12:51
Compare
Choose a tag to compare
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".

This commit also combines multiple related filters that share a common
word base, for example, a single filter `"[bB]reakpoint(s)?` rather than
`[bB]reakpoint` and `[bB]reakpoints`.

v11

05 Mar 12:39
176d350
Compare
Choose a tag to compare
v11
Merge branch 'redhat-documentation:main' into main

v10: improve Spelling rule filters by using word boundaries

11 Feb 19:44
Compare
Choose a tag to compare
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".

This commit also combines multiple related filters that share a common
word base, for example, a single filter `"[bB]reakpoint(s)?` rather than
`[bB]reakpoint` and `[bB]reakpoints`.

v9: improve Spelling rules by using word boundaries

11 Feb 19:27
Compare
Choose a tag to compare
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".

v8: improve Spelling rules by using word boundaries

11 Feb 16:35
Compare
Choose a tag to compare
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".

v7

11 Feb 13:29
040af1d
Compare
Choose a tag to compare
v7
Merge branch 'redhat-documentation:main' into main

v6: improve Spelling rules by using word boundaries

12 Nov 14:47
Compare
Choose a tag to compare
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".