Поправлены правила. Исправлен параметр формирования деталировки
All checks were successful
CI / build-test (push) Successful in 31s
Release / pack-and-publish (release) Successful in 34s

This commit is contained in:
FrigaT
2025-12-29 02:19:30 +03:00
parent 507c466b5d
commit edc4d5c087
4 changed files with 6 additions and 6 deletions

View File

@@ -45,7 +45,7 @@ namespace SQLLinter.CLI
["SetVariable"] = Common.RuleViolationSeverity.Critical,
["CreateProcedureInDbo"] = Common.RuleViolationSeverity.Warning,
},
GenerateDetails = true,
GenerateDetails = false,
};
//var linter = new Linter(con, rep);
@@ -63,7 +63,7 @@ namespace SQLLinter.CLI
Dictionary<string, Stream> files = new();
for (int i = 0; i < 15; i++)
for (int i = 0; i < 5; i++)
{
files[name + i + ".sql"] = reader.BaseStream;
}