9 lines
335 B
INI
9 lines
335 B
INI
|
|
|
||
|
|
[*.{cs,vb}]
|
||
|
|
# 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
|
||
|
|
# disable IDE0060: Remove unused parameter
|
||
|
|
dotnet_diagnostic.IDE0060.severity = none
|