Fix d'editconfig pour ne pas ajouter de copyright

This commit is contained in:
josephine.vetu
2026-03-28 10:06:43 +01:00
committed by b.nodon
parent b9dd6f04d9
commit 18075a9792

View File

@@ -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
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