Cake.Issues.Markdownlint 4.5.1

dotnet add package Cake.Issues.Markdownlint --version 4.5.1
NuGet\Install-Package Cake.Issues.Markdownlint -Version 4.5.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Cake.Issues.Markdownlint" Version="4.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cake.Issues.Markdownlint --version 4.5.1
#r "nuget: Cake.Issues.Markdownlint, 4.5.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Cake.Issues.Markdownlint&version=4.5.1

Markdownlint support for the Cake.Issues addin for Cake Build Automation System

NOTE: This is the version of the addin compatible with Cake .NET Tool. For addin compatible with Cake Frosting see Cake.Frosting.Issues.Markdownlint.

The Markdownlint support for the Cake.Issues addin for Cake allows you to read issues logged by Markdownlint.

Cake.Issues redefines issue management within the Cake build system by offering a comprehensive, universal, and extensible solution. The unique capabilities of the addins empower development teams to enforce coding standards, generate insightful reports, seamlessly incorporate various linting tools, and streamlining the integration with pull requests. With its modular architecture and extensive set of aliases, Cake.Issues provides a future-proof infrastructure for issue management in Cake builds, fostering a more efficient and adaptable development process.

For more information and extensive documentation see the Cake.Issues website. For general information about the Cake build automation system see the Cake website.

How to use

Integrating Cake.Issues into your Cake build is straightforward. With minimal setup, teams can enjoy the benefits of enhanced code quality management seamlessly integrated into their existing build pipeline.

After adding the addin the log file of a Markdownlint run can be parsed:

Task("Lint-Documentation").Does(() =>
{
    var logPath = @"c:\build\markdownlint.log";
    var repoRootPath = @"c:\repo";

    // Run markdownlint-cli using Cake.Markdownlint addin.
    var settings =
        MarkdownlintNodeJsRunnerSettings.ForDirectory(repoRootPath.Combine("docs"));
    settings.OutputFile = logPath;
    settings.ThrowOnIssue = false;
    RunMarkdownlintNodeJs(settings);

    // Read Issues.
    var issues =
        ReadIssues(
            MarkdownlintIssuesFromFilePath(
                logPath,
                MarkdownlintCliLogFileFormat),
            repoRootPath);

    Information("{0} issues are found.", issues.Count());
});

Support & Discussion

For questions and to discuss ideas & feature requests, use the GitHub discussions on the Cake GitHub repository, under the Extension Q&A category.

Contributing

Contributions are welcome. See Contribution Guidelines.

License

MIT License - Copyright © Cake Issues contributors

Binary distributions for some addins contain third-party code which is licensed under its own respective license. See LICENSE for details.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.5.1 0 5/24/2024
4.5.0 100 5/23/2024
4.4.0 278 5/18/2024
4.3.1 288 4/25/2024
4.3.0 292 4/20/2024
4.2.1 219 4/16/2024
4.2.0 557 4/14/2024
4.1.0 15,404 2/21/2024
4.0.0 32,844 12/24/2023
4.0.0-beta0001 5,590 12/16/2023
3.0.0 35,924 7/17/2023
3.0.0-beta0001 5,363 6/8/2023
2.0.0 20,023 12/1/2022
2.0.0-beta0002 252 10/1/2022
2.0.0-beta0001 6,603 7/25/2022
1.1.1 47,691 9/1/2021
1.1.0 635 8/31/2021
1.0.0 3,958 7/27/2021
1.0.0-beta0001 754 2/27/2021
0.9.0 24,255 8/22/2020
0.9.0-beta0002 1,836 8/1/2020
0.9.0-beta0001 705 7/14/2020
0.8.2 1,651 5/19/2020
0.8.1 1,369 11/18/2019
0.8.0 744 10/17/2019
0.8.0-beta0001 503 10/11/2019
0.7.1 939 8/22/2019
0.7.0 1,243 5/30/2019
0.7.0-beta0001 701 4/22/2019
0.6.1 1,762 11/1/2018
0.6.1-beta0001 595 10/21/2018
0.6.0 1,237 8/24/2018
0.6.0-beta0002 665 8/20/2018
0.6.0-beta0001 653 8/19/2018
0.5.0 933 8/17/2018
0.5.0-beta0001 666 8/6/2018
0.4.0 957 7/28/2018
0.4.0-beta0002 670 7/28/2018
0.4.0-beta0001 660 7/27/2018
0.3.0 1,258 6/4/2018
0.3.0-beta0002 775 6/1/2018
0.3.0-beta0001 804 5/31/2018
0.2.0 1,035 5/27/2018
0.1.0 1,614 9/16/2017
0.1.0-beta0002 732 9/13/2017
0.1.0-beta0001 763 9/9/2017