Makes YAML linter not blow up once warnings or errors are logged.

This commit is contained in:
Vera Aguilera Puerto
2021-04-11 19:13:02 +02:00
parent 2fac6b1089
commit ca0aa1a8d5

View File

@@ -44,7 +44,10 @@ namespace Content.YAMLLinter
private async Task<Dictionary<string, HashSet<ErrorNode>>> ValidateClient()
{
var client = StartClient();
var client = StartClient(new ClientContentIntegrationOption()
{
FailureLogLevel = null,
});
await client.WaitIdleAsync();
@@ -63,7 +66,10 @@ namespace Content.YAMLLinter
private async Task<Dictionary<string, HashSet<ErrorNode>>> ValidateServer()
{
var server = StartServer();
var server = StartServer(new ServerContentIntegrationOption()
{
FailureLogLevel = null,
});
await server.WaitIdleAsync();