You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Support for reading CodeClimate compatible files using the Cake.Issues addin for Cake Frosting
2
+
3
+
> **NOTE**:
4
+
> This is the version of the addin compatible with [Cake Frosting].
5
+
> For addin compatible with [Cake .NET Tool] see [Cake.Issues.CodeClimate](https://www.nuget.org/packages/Cake.Issues.CodeClimate).
6
+
7
+
The CodeClimate support for the Cake.Issues addin for Cake allows you to read CodeClimate compatible files.
8
+
9
+
Cake.Issues redefines issue management within the Cake build system by offering a comprehensive, universal, and extensible solution.
10
+
The unique capabilities of the addins empower development teams to enforce coding standards, generate insightful reports,
11
+
seamlessly incorporate various linting tools, and streamlining the integration with pull requests.
12
+
With its [modular architecture] and extensive [set of aliases], Cake.Issues provides a future-proof infrastructure for issue management
13
+
in Cake builds, fostering a more efficient and adaptable development process.
14
+
15
+
For more information and extensive documentation see the [Cake.Issues website](https://cakeissues.net).
16
+
For general information about the Cake build automation system see the [Cake website](http://cakebuild.net).
17
+
18
+
## How to use
19
+
20
+
Integrating Cake.Issues into your Cake build is straightforward.
21
+
With minimal setup, teams can enjoy the benefits of enhanced code quality management seamlessly integrated into their existing build pipeline.
22
+
23
+
After adding the addin the CodeClimate log file can be parsed:
24
+
25
+
```csharp
26
+
Task("Analyze").Does(() =>
27
+
{
28
+
varlogPath=@"c:\build\log.json";
29
+
varrepoRootPath=@"c:\repo";
30
+
31
+
// Read issues.
32
+
varissues=
33
+
ReadIssues(
34
+
CodeClimateIssuesFromFilePath(logPath),
35
+
repoRootPath);
36
+
37
+
Information("{0} issues are found.", issues.Count());
38
+
});
39
+
```
40
+
41
+
## Support & Discussion
42
+
43
+
For questions and to discuss ideas & feature requests, use the [GitHub discussions on the Cake GitHub repository](https://github.com/cake-build/cake/discussions), under the [Extension Q&A](https://github.com/orgs/cake-build/discussions/categories/extension-q-a) category.
44
+
45
+
## Contributing
46
+
47
+
Contributions are welcome. See [Contribution Guidelines](https://github.com/cake-contrib/Cake.Issues/blob/develop/CONTRIBUTING.md).
# Support for reading CodeClimate compatible files using the Cake.Issues addin for Cake Build Automation System
2
+
3
+
> **NOTE**:
4
+
> This is the version of the addin compatible with [Cake .NET Tool].
5
+
> For addin compatible with [Cake Frosting] see [Cake.Frosting.Issues.CodeClimate](https://www.nuget.org/packages/Cake.Frosting.Issues.CodeClimate).
6
+
7
+
The CodeClimate support for the Cake.Issues addin for Cake allows you to read CodeClimate compatible files.
8
+
9
+
Cake.Issues redefines issue management within the Cake build system by offering a comprehensive, universal, and extensible solution.
10
+
The unique capabilities of the addins empower development teams to enforce coding standards, generate insightful reports,
11
+
seamlessly incorporate various linting tools, and streamlining the integration with pull requests.
12
+
With its [modular architecture] and extensive [set of aliases], Cake.Issues provides a future-proof infrastructure for issue management
13
+
in Cake builds, fostering a more efficient and adaptable development process.
14
+
15
+
For more information and extensive documentation see the [Cake.Issues website](https://cakeissues.net).
16
+
For general information about the Cake build automation system see the [Cake website](http://cakebuild.net).
17
+
18
+
## How to use
19
+
20
+
Integrating Cake.Issues into your Cake build is straightforward.
21
+
With minimal setup, teams can enjoy the benefits of enhanced code quality management seamlessly integrated into their existing build pipeline.
22
+
23
+
After adding the addin the CodeClimate log file can be parsed:
24
+
25
+
```csharp
26
+
Task("Analyze").Does(() =>
27
+
{
28
+
varlogPath=@"c:\build\log.json";
29
+
varrepoRootPath=@"c:\repo";
30
+
31
+
// Read issues.
32
+
varissues=
33
+
ReadIssues(
34
+
CodeClimateIssuesFromFilePath(logPath),
35
+
repoRootPath);
36
+
37
+
Information("{0} issues are found.", issues.Count());
38
+
});
39
+
```
40
+
41
+
## Support & Discussion
42
+
43
+
For questions and to discuss ideas & feature requests, use the [GitHub discussions on the Cake GitHub repository](https://github.com/cake-build/cake/discussions), under the [Extension Q&A](https://github.com/orgs/cake-build/discussions/categories/extension-q-a) category.
44
+
45
+
## Contributing
46
+
47
+
Contributions are welcome. See [Contribution Guidelines](https://github.com/cake-contrib/Cake.Issues/blob/develop/CONTRIBUTING.md).
0 commit comments