Replies: 2 comments 1 reply
-
This appears to be work relatively well: ignoreRegExpList:
# Ignore all words with numbers
- /\b[0-9]\b/
# Ignore all words with 3 or more uppercase letters
- /\b[A-Z]{3,}\b/
# Ignore all words starting with a capital letter and having 3 or more lowercase letters
# https://github.com/streetsidesoftware/cspell/discussions/5245
- /\b[A-Z][a-z]{2,}\b/
# Ignore CamelCase words
- /\b[A-Z][a-z]+[A-Z][a-z]+\b/
# Ignore hashtags
- /\B#\w+\b/ |
Beta Was this translation helpful? Give feedback.
0 replies
-
Those regular expressions will hide the above issues you are seeing, but they will also hide real spelling mistakes. A useful option in
// cspell:ignore Artios
<!--- The 3 dashes tells the markdown compiler to not generate an HTML comment.
cspell:ignore Artios
---> |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I look at the things that cspell highlights, most of them are names of various companies, e.g.
How could I ignore words that start with a capital letter?
Beta Was this translation helpful? Give feedback.
All reactions