Interface: FeaturesSupportedByReporter
Defined in: CSpellReporter.ts:254
Allows the reporter to advertise which features it supports.
Properties
contextGeneration?
optionalcontextGeneration:boolean
Defined in: CSpellReporter.ts:275
The reporter can generate context for issues.
true- the reporter will be called with issues that do NOT have acontextproperty.false | undefined- the reporter will be called with issues that have acontextproperty.
issueType?
optionalissueType:boolean
Defined in: CSpellReporter.ts:268
The reporter supports the Issue.issueType option.
true- the reporter will be called with all issues types.false | undefined- only IssueType.spelling issues will be passed to the reporter.
unknownWords?
optionalunknownWords:boolean
Defined in: CSpellReporter.ts:261
The reporter supports the ReportingConfiguration.unknownWords option and understands how to filter issues based upon Issue.isFlagged, Issue.hasSimpleSuggestions and Issue.hasPreferredSuggestions.
true- Thereporter.issuemethod will be called for all spelling issues and it is expected to handle .false | undefined- the unknown words will be filtered out based upon theunknownWordssetting before being passed to the reporter.