2026-01-20 22:41:16 +01:00
|
|
|
|
|
|
|
|
[*.{cs,vb}]
|
2026-05-21 22:05:33 +02:00
|
|
|
# disable CA1822: Mark members as static
|
|
|
|
|
# -> TUnit requiring instance methods for test cases
|
|
|
|
|
dotnet_diagnostic.CA1822.severity = none
|
|
|
|
|
# disable CA1707: Identifiers should not contain underscores
|
|
|
|
|
dotnet_diagnostic.CA1707.severity = none
|
2026-01-20 22:41:16 +01:00
|
|
|
# disable IDE0060: Remove unused parameter
|
|
|
|
|
dotnet_diagnostic.IDE0060.severity = none
|
|
|
|
|
# disable IDE0005: Unnecessary using directive
|
|
|
|
|
dotnet_diagnostic.IDE0005.severity = none
|
2026-05-21 22:05:33 +02:00
|
|
|
# disable IDE0390: Method can be made synchronous
|
|
|
|
|
dotnet_diagnostic.IDE0390.severity = none
|
|
|
|
|
# disable IDE0391: Method can be made synchronous
|
|
|
|
|
dotnet_diagnostic.IDE0391.severity = none
|