@cspell/eslint-plugin
: Difference between dictionaries & custom word list file
#5389
Answered
by
Jason3S
OrRosenblatt
asked this question in
Q&A
-
Just curious, what's the difference between |
Beta Was this translation helpful? Give feedback.
Answered by
Jason3S
Mar 20, 2024
Replies: 1 comment
-
There are three settings:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
OrRosenblatt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are three settings:
customWordListFile
- a quick way to specify a dictionary and enabling it.dictionaries
- this setting allows you to enable/disable named dictionaries.For example
dictionaries: ['lorem-ipsum'],
would enable thelorem-ipsum
dictionary.To disable a dictionary, start the name with
!
, like this:dictionaries: ['!softwareTerms'],
The
cspell trace --all
command can give a list of known dictionary names.dictionaryDefinitions
- this setting allows you to define a named dictionary.