This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Issues.Markdownlint.
Summary
Gets an instance of a provider for issues reported by Markdownlint using specified settings.
- Assembly
- Cake
.Issues .Markdownlint .dll - Namespace
- Cake
.Issues .Markdownlint - Containing Type
- Markdownlint
Issues Aliases
Syntax
public static IIssueProvider MarkdownlintIssues(this ICakeContext context, MarkdownlintIssuesSettings settings)
Examples
Read issues reported by Cake.Markdownlint:
var settings =
new MarkdownlintIssuesSettings(
@"C:\build\Markdownlint.log",
MarkdownlintCliLogFileFormat);
var issues =
ReadIssues(
MarkdownlintIssuesFromFilePath(settings),
@"c:\repo");
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
settings | Markdownlint |
Settings for reading the Markdownlint log. |
Return Value
Type | Description |
---|---|
IIssueProvider | Instance of a provider for issues reported by Markdownlint. |