Summary
Gets an instance of a provider for issues reported by ESLint using log file content.
Syntax
public static IIssueProvider EsLintIssuesFromContent(this ICakeContext context, string logFileContent, BaseEsLintLogFileFormat format)
Examples
Read issues reported by ESLint:
var issues =
ReadIssues(
EsLintIssuesFromContent(logFileContent),
@"c:\repo");
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
logFileContent |
string |
Content of the the ESLint log file.
The log file needs to be in the format as defined by the format parameter. |
format |
BaseEsLintLogFileFormat |
Format of the provided ESLint log file. |
Return Value
Type |
Description |
IIssueProvider |
Instance of a provider for issues reported by ESLint. |