From 94bf1b46042b688990468fba764e8bf91ba18f40 Mon Sep 17 00:00:00 2001 From: copygirl Date: Tue, 11 Oct 2022 20:21:09 +0200 Subject: [PATCH] Suppress warnings in dependencies --- .editorconfig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index dc74b1f..5e91147 100644 --- a/.editorconfig +++ b/.editorconfig @@ -15,6 +15,11 @@ dotnet_diagnostic.IDE0005.severity = suggestion # IDE0047: Parentheses can be removed dotnet_diagnostic.IDE0047.severity = none +[src/{FastNoiseLite,flecs-cs}/**] +# Suppress compiler and analyer warnings in dependencies. +dotnet_analyzer_diagnostic.severity = none +dotnet_diagnostic.IDE0005.severity = none + [*.md] -# Allows placing double-space at end of lines. +# Allows placing double-space at end of lines to force linebreaks. trim_trailing_whitespace = false