You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to be told that I have a spelling error in this comment:
// Some of the IDs have speling errors
For the sake of argument, I don't want it to complain about "IDs", so I add a rule to skipWordIfMatch:
skipWordIfMatch: ["^IDs$"]
The documentation says "the plugin will try to match every single word that is found in the nodes (...) and will not check the single word if matched." So I'd assume that because "IDs" matches /^IDs$/ it will not check that word. Instead I get:
You have a misspelled word: Ds on Comment
How do I exclude certain exact matches from the spell check without putting them in "skipIfMatch" (which means my other spelling error gets missed)?
The text was updated successfully, but these errors were encountered:
Hi,
I want to be told that I have a spelling error in this comment:
For the sake of argument, I don't want it to complain about "IDs", so I add a rule to skipWordIfMatch:
The documentation says "the plugin will try to match every single word that is found in the nodes (...) and will not check the single word if matched." So I'd assume that because
"IDs"
matches/^IDs$/
it will not check that word. Instead I get:How do I exclude certain exact matches from the spell check without putting them in "skipIfMatch" (which means my other spelling error gets missed)?
The text was updated successfully, but these errors were encountered: