Interface: SpellingDictionary
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:78
Extends
DictionaryInfo
Extended by
Properties
containsNoSuggestWords
readonly
containsNoSuggestWords:boolean
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:80
getPreferredSuggestions()?
optional
getPreferredSuggestions: (word
) =>PreferredSuggestion
[]
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:103
Parameters
word
string
Returns
PreferredSuggestion
[]
isDictionaryCaseSensitive
readonly
isDictionaryCaseSensitive:boolean
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:114
name
readonly
name:string
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:72
The name of the dictionary
Inherited from
DictionaryInfo.name
options
readonly
options:SpellingDictionaryOptions
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:76
Options
Inherited from
DictionaryInfo.options
remapWord()?
optional
remapWord: (word
) =>string
[]
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:112
Generates all possible word combinations by applying repMap
.
This acts a bit like brace expansions in globs.
Parameters
word
string
the word to map
Returns
string
[]
array of adjusted words.
size
readonly
size:number
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:113
source
readonly
source:string
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:74
The source, filename or URI
Inherited from
DictionaryInfo.source
type
readonly
type:string
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:79
Methods
find()
find(
word
,options
?):undefined
|FindResult
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:83
A more detailed search for a word, might take longer than has
Parameters
word
string
options?
SearchOptions
Returns
undefined
| FindResult
genSuggestions()
genSuggestions(
collector
,suggestOptions
):void
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:104
Parameters
collector
suggestOptions
Returns
void
getErrors()?
optional
getErrors():Error
[]
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:115
Returns
Error
[]
has()
has(
word
,options
?):boolean
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:81
Parameters
word
string
options?
SearchOptions
Returns
boolean
isForbidden()
isForbidden(
word
,ignoreCaseAndAccents
?):boolean
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:88
Checks if a word is forbidden.
Parameters
word
string
word to check.
ignoreCaseAndAccents?
boolean
Returns
boolean
isNoSuggestWord()
isNoSuggestWord(
word
,options
):boolean
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:96
No Suggest words are considered correct but will not be listed when suggestions are generated. No Suggest words and "Ignored" words are equivalent. Ignored / no suggest words override forbidden words.
Parameters
word
string
word to check
options
SearchOptions
options
Returns
boolean
mapWord()
mapWord(
word
):string
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:105
Parameters
word
string
Returns
string
suggest()
suggest(
word
,suggestOptions
?):SuggestionResult
[]
Defined in: packages/cspell-dictionary/dist/SpellingDictionary/SpellingDictionary.d.ts:102
Generate suggestions for a word
Parameters
word
string
word
suggestOptions?
options