Class: DocumentValidator
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:86
Constructors
Constructor
new DocumentValidator(
doc,options,settings):DocumentValidator
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:115
Parameters
doc
Document to validate
options
settings
Returns
DocumentValidator
Properties
errors
readonlyerrors:Error[] =[]
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:89
options
readonlyoptions:DocumentValidatorOptions
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:94
perfTiming
readonlyperfTiming:PerfTimings={}
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:95
settings
readonlysettings:CSpellSettings
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:118
skipValidation
skipValidation:
boolean
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:96
Accessors
document
Get Signature
get document():
TextDocument
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:394
Returns
prepTime
Get Signature
get prepTime():
number
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:262
The amount of time in ms to prepare for validation.
Returns
number
ready
Get Signature
get ready():
boolean
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:130
Returns
boolean
validateDirectives
Get Signature
get validateDirectives():
boolean
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:266
Returns
boolean
Methods
_getPreparations()
_getPreparations():
Preparations|undefined
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:542
Internal cspell-lib use.
Returns
Preparations | undefined
check()
check(
parsedText):ValidationIssue[]
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:283
Parameters
parsedText
Returns
checkDocument()
checkDocument(
forceCheck?):ValidationIssue[]
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:352
Check a Document for Validation Issues.
Note: The validator must be prepared before calling this method.
Parameters
forceCheck?
boolean = false
force a check even if the document would normally be excluded.
Returns
the validation issues.
checkDocumentAsync()
checkDocumentAsync(
forceCheck?):Promise<ValidationIssue[]>
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:340
Check a Document for Validation Issues.
Parameters
forceCheck?
boolean
force a check even if the document would normally be excluded.
Returns
Promise<ValidationIssue[]>
the validation issues.
checkDocumentDirectives()
checkDocumentDirectives(
forceCheck?):ValidationIssue[]
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:372
Parameters
forceCheck?
boolean = false
Returns
checkText()
checkText(
range,_text,scope?):ValidationIssue[]
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:277
Check a range of text for validation issues.
Parameters
range
readonly [number, number]
the range of text to check.
_text
the text to check. If not given, the text will be taken from the document.
string | undefined
scope?
the scope to use for validation. If not given, the default scope will be used.
string | string[]
Returns
the validation issues.
getCheckedTextRanges()
getCheckedTextRanges():
MatchRange[]
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:407
Get the calculated ranges of text that should be included in the spell checking.
Returns
MatchRange[]
MatchRanges of text to include.
getConfigErrors()
getConfigErrors():
ImportFileRefWithError[] |undefined
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:511
Returns
ImportFileRefWithError[] | undefined
getDictionaryErrors()
getDictionaryErrors():
Map<string,Error[]> |undefined
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:517
Returns
Map<string, Error[]> | undefined
getFinalizedDocSettings()
getFinalizedDocSettings():
CSpellSettingsInternal
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:505
Returns
CSpellSettingsInternal
prepare()
prepare():
Promise<void>
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:134
Returns
Promise<void>
shouldCheckDocument()
shouldCheckDocument():
boolean
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:534
Returns true if the final result of the configuration calculation results
in the document being enabled. Note: in some cases, checking the document
might still make sense, for example, the @cspell/eslint-plugin relies on
eslint configuration to make that determination.
Returns
boolean
true if the document settings have resolved to be enabled
traceWord()
traceWord(
word):TraceResult
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:412
Parameters
word
string
Returns
TraceResult
updateDocumentText()
updateDocumentText(
text):Promise<void>
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:398
Parameters
text
string
Returns
Promise<void>
create()
staticcreate(doc,options,settingsOrConfigFile):Promise<DocumentValidator>
Defined in: packages/cspell-lib/src/lib/textValidation/docValidator.ts:98
Parameters
doc
options
settingsOrConfigFile
CSpellSettings | ICSpellConfigFile
Returns
Promise<DocumentValidator>