Replies: 1 comment 1 reply
-
By default, regular expressions ignore case. The fix: {
"ignoreRegExpList": [
"/\\bE[A-Z0-9_]+\\b/g"
]
} |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, all. I have the following:
I am trying to change
cspell.json
so that the terms on lines 3 and 4 ofwords.bash
are seen as unknown, but theENDFOR
andEEND
are accepted. I.e., how do I get the output to look like the following using regex?cspell
seems to insist on making the regex check non-case-sensitive.Thank you.
Beta Was this translation helpful? Give feedback.
All reactions