diff --git a/src/DocumentationGenerator/Program.cs b/src/DocumentationGenerator/Program.cs index a934227a..51b6de38 100644 --- a/src/DocumentationGenerator/Program.cs +++ b/src/DocumentationGenerator/Program.cs @@ -166,7 +166,7 @@ void GenerateFile(FullPath outputPath, Action code) var sb = new StringBuilder(); sb.Append("# This file is generated by the build process. Do not edit it manually.\n"); sb.Append("is_global = true\n"); - sb.Append("global_level = -1\n"); + sb.Append("global_level = -100\n"); sb.Append('\n'); code(sb); WriteFileIfChanged(outputPath, sb.ToString()); diff --git a/src/Meziantou.Analyzer.Pack/configuration/default.editorconfig b/src/Meziantou.Analyzer.Pack/configuration/default.editorconfig index 5c205277..eed98009 100644 --- a/src/Meziantou.Analyzer.Pack/configuration/default.editorconfig +++ b/src/Meziantou.Analyzer.Pack/configuration/default.editorconfig @@ -1,6 +1,6 @@ # This file is generated by the build process. Do not edit it manually. is_global = true -global_level = -1 +global_level = -100 # MA0001: StringComparison is missing dotnet_diagnostic.MA0001.severity = suggestion diff --git a/src/Meziantou.Analyzer.Pack/configuration/none.editorconfig b/src/Meziantou.Analyzer.Pack/configuration/none.editorconfig index 329ddd66..f7c6f662 100644 --- a/src/Meziantou.Analyzer.Pack/configuration/none.editorconfig +++ b/src/Meziantou.Analyzer.Pack/configuration/none.editorconfig @@ -1,6 +1,6 @@ # This file is generated by the build process. Do not edit it manually. is_global = true -global_level = -1 +global_level = -100 # MA0001: StringComparison is missing dotnet_diagnostic.MA0001.severity = none