EsLintIssuesProvider Class

Summary

Provider for issues reported by ESLint.
graph BT Type-->Base0["BaseMultiFormatIssueProvider<EsLintIssuesSettings, EsLintIssuesProvider>"] Base0-->Base1["BaseConfigurableIssueProvider<EsLintIssuesSettings>"] Base1-->Base2["BaseIssueProvider"] click Base2 "/api/Cake.Issues/BaseIssueProvider" Base2-->Base3["BaseIssueComponent<IReadIssuesSettings>"] Base3-->Base4["Object"] Type-.->Interface0["IIssueProvider"] click Interface0 "/api/Cake.Issues/IIssueProvider" Type-.->Interface1["IBaseIssueComponent<IReadIssuesSettings>"] Type["EsLintIssuesProvider"] class Type type-node

Syntax

public class EsLintIssuesProvider : 
    BaseMultiFormatIssueProvider<EsLintIssuesSettings, EsLintIssuesProvider>, IIssueProvider, 
    IBaseIssueComponent<IReadIssuesSettings>

Constructors

Name Summary
EsLintIssuesProvider(ICakeLog, EsLintIssuesSettings) Initializes a new instance of the EsLintIssuesProvider class.

Properties

Name Value Summary
ProviderName string
Gets the human friendly name of the issue provider.
ProviderType string
Gets the type of the issue provider.
Inherited from BaseIssueProvider
ProviderTypeName string
Gets the name of the ESLint issue provider. This name can be used to identify issues based on the ProviderType property.
static

Methods

Name Value Summary
ReadIssues() IEnumerable<IIssue>
Gets all issues.
Inherited from BaseIssueProvider

Extension Methods

Name Value Summary
NotNull<EsLintIssuesProvider>(string) void
Throws an exception if the specified parameter's value is null.
GitHub