mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00
78 lines
2.3 KiB
INI
78 lines
2.3 KiB
INI
root = false
|
|
|
|
[*.cs]
|
|
# IDE0055: Fix formatting
|
|
dotnet_diagnostic.IDE0055.severity = warning
|
|
|
|
# SA1101: Prefix local calls with this
|
|
dotnet_diagnostic.SA1101.severity = none
|
|
|
|
# SA1633: File should have header
|
|
dotnet_diagnostic.SA1633.severity = none
|
|
|
|
# SA1201: Elements should appear in the correct order
|
|
dotnet_diagnostic.SA1201.severity = none
|
|
|
|
# SA1202: Public members should come before private members
|
|
dotnet_diagnostic.SA1202.severity = none
|
|
|
|
# SA1309: Field names should not begin with underscore
|
|
dotnet_diagnostic.SA1309.severity = none
|
|
|
|
# SA1404: Code analysis suppressions should have justification
|
|
dotnet_diagnostic.SA1404.severity = none
|
|
|
|
# SA1516: Elements should be separated by a blank line
|
|
dotnet_diagnostic.SA1516.severity = none
|
|
|
|
# CA1303: Do not pass literals as localized parameters
|
|
dotnet_diagnostic.CA1303.severity = none
|
|
|
|
# CSA1204: Static members should appear before non-static members
|
|
dotnet_diagnostic.SA1204.severity = none
|
|
|
|
# IDE0052: Remove unread private members
|
|
dotnet_diagnostic.IDE0052.severity = warning
|
|
|
|
# IDE0063: Use simple 'using' statement
|
|
csharp_prefer_simple_using_statement = false:suggestion
|
|
|
|
# IDE0018: Variable declaration can be inlined
|
|
dotnet_diagnostic.IDE0018.severity = warning
|
|
|
|
# SA1625: Element documenation should not be copied and pasted
|
|
dotnet_diagnostic.SA1625.severity = none
|
|
|
|
# IDE0005: Using directive is unnecessary
|
|
dotnet_diagnostic.IDE0005.severity = warning
|
|
|
|
# SA1117: Parameters should be on same line or separate lines
|
|
dotnet_diagnostic.SA1117.severity = none
|
|
|
|
# SA1404: Code analysis suppression should have justification
|
|
dotnet_diagnostic.SA1404.severity = none
|
|
|
|
# SA1101: Prefix local calls with this
|
|
dotnet_diagnostic.SA1101.severity = none
|
|
|
|
# SA1633: File should have header
|
|
dotnet_diagnostic.SA1633.severity = none
|
|
|
|
# SA1649: File name should match first type name
|
|
dotnet_diagnostic.SA1649.severity = none
|
|
|
|
# SA1402: File may only contain a single type
|
|
dotnet_diagnostic.SA1402.severity = none
|
|
|
|
# CA1814: Prefer jagged arrays over multidimensional
|
|
dotnet_diagnostic.CA1814.severity = none
|
|
|
|
# RCS1194: Implement exception constructors.
|
|
dotnet_diagnostic.RCS1194.severity = none
|
|
|
|
# CA1032: Implement standard exception constructors
|
|
dotnet_diagnostic.CA1032.severity = none
|
|
|
|
# CA1826: Do not use Enumerable methods on indexable collections. Instead use the collection directly
|
|
dotnet_diagnostic.CA1826.severity = none
|