29 lines
1.2 KiB
INI
29 lines
1.2 KiB
INI
[*.cs]
|
|
|
|
indent_style = space
|
|
indent_size = 4
|
|
#tab_width = 2
|
|
trim_trailing_whitespace = true
|
|
|
|
|
|
# Default severity for analyzer diagnostics with category 'Design'
|
|
dotnet_analyzer_diagnostic.category-Design.severity = none
|
|
# Default severity for analyzer diagnostics with category 'Redundancy'
|
|
dotnet_analyzer_diagnostic.category-Redundancy.severity = none
|
|
# Default severity for analyzer diagnostics with category 'Naming'
|
|
dotnet_analyzer_diagnostic.category-Naming.severity = none
|
|
|
|
# Default severity for analyzer diagnostics with category 'Globalization'
|
|
dotnet_analyzer_diagnostic.category-Globalization.severity = none
|
|
|
|
# CA1805: Non eseguire inutilmente l'inizializzazione
|
|
dotnet_diagnostic.CA1805.severity = none
|
|
# CA2227: Le proprietà delle raccolte devono essere di sola lettura
|
|
dotnet_diagnostic.CA2227.severity = none
|
|
# CA1825: Evitare allocazioni di matrice di lunghezza zero.
|
|
dotnet_diagnostic.CA1825.severity = none
|
|
# CA5372: Usa XmlReader per XPathDocument
|
|
dotnet_diagnostic.CA5372.severity = none
|
|
# RCS1155: Use StringComparison when comparing strings.
|
|
dotnet_diagnostic.RCS1155.severity = none
|