Interface DiagnosticsCapabilities

General diagnostics capabilities for pull and push model.

interface DiagnosticsCapabilities {
    codeDescriptionSupport?: boolean;
    dataSupport?: boolean;
    relatedInformation?: boolean;
    tagSupport?: ClientDiagnosticsTagOptions;
}

Hierarchy (View Summary)

Properties

codeDescriptionSupport?: boolean

Client supports a codeDescription property

3.16.0

dataSupport?: boolean

Whether code action supports the data property which is preserved between a textDocument/publishDiagnostics and textDocument/codeAction request.

3.16.0

relatedInformation?: boolean

Whether the clients accepts diagnostics with related information.

Client supports the tag property to provide meta data about a diagnostic. Clients supporting tags have to handle unknown tags gracefully.

3.15.0