diff --git a/README.md b/README.md index 4e9185a..15a97a3 100644 --- a/README.md +++ b/README.md @@ -163,14 +163,12 @@ Example report structure: **Tool:** MockTool 1.0.0 -**Results:** 2 - ## Results Found 2 results -src/Program.cs(42): warning TEST001: Test issue 1 -src/Helper.cs(15): error TEST002: Test issue 2 +src/Program.cs(42): warning [TEST001] Test issue 1 +src/Helper.cs(15): error [TEST002] Test issue 2 ``` ## Contributing diff --git a/docs/guide/guide.md b/docs/guide/guide.md index 1f737d7..dcac84b 100644 --- a/docs/guide/guide.md +++ b/docs/guide/guide.md @@ -215,11 +215,10 @@ The generated markdown reports include: - **Tool Information**: Name and version of the analysis tool - **Summary**: Count of results found - **Results Details**: Detailed information about each finding, including: - - Rule ID and description - - Severity level - File location and line number - - Code snippet (if available) - - Remediation guidance (if available) + - Severity level + - Rule ID + - Issue message ## Exit Codes diff --git a/test/DemaConsulting.SarifMark.Tests/AssemblyInfo.cs b/test/DemaConsulting.SarifMark.Tests/AssemblyInfo.cs index 03eb0d4..319c962 100644 --- a/test/DemaConsulting.SarifMark.Tests/AssemblyInfo.cs +++ b/test/DemaConsulting.SarifMark.Tests/AssemblyInfo.cs @@ -21,4 +21,4 @@ using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("DemaConsulting.SarifMark.Tests")] -[assembly: Parallelize(Scope = ExecutionScope.ClassLevel)] +[assembly: DoNotParallelize]