From 18075a979267685140970c40e13fd0826fd88838 Mon Sep 17 00:00:00 2001 From: "josephine.vetu" Date: Sat, 28 Mar 2026 10:06:43 +0100 Subject: [PATCH] Fix d'editconfig pour ne pas ajouter de copyright --- .editorconfig | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index d1d7d33..9896049 100644 --- a/.editorconfig +++ b/.editorconfig @@ -390,4 +390,14 @@ dotnet_naming_style.s_camelcase.capitalization = camel_case dotnet_diagnostic.SA1623.severity = none dotnet_diagnostic.SA1624.severity = none -dotnet_diagnostic.SA1600.severity = suggestion \ No newline at end of file +dotnet_diagnostic.SA1600.severity = suggestion + +[*.cs] +# 1. Tell the .NET Formatter to stop injecting a header +file_header_template = unset + +# 2. Tell StyleCop to stop requiring a file header (SA1633) +dotnet_diagnostic.SA1633.severity = none + +# 3. Tell the IDE to stop requiring a file header (IDE0073) +dotnet_diagnostic.IDE0073.severity = none \ No newline at end of file