@cspell/cspell-bundled-dicts
Advanced tools
Changelog
5.7.0-alpha.0 (2021-08-14)
There are several ways to mark a word as forbidden:
!
.
!forbiddenWord
words
section of cspell
configuration:
"words": [
"!forbiddenWord",
"configstore"
],
flagWords
section of cspell
configuration:
"flagWords": ["forbiddenWord"]
Sometimes it is necessary to allow a word even if it is forbidden.
/**
* Do not mark `forbiddenWord` as incorrect.
* cspell:ignore forbiddenWord
*/
cspell
configuration{
"ignoreWords": ["forbiddenWord"]
}