blub
This commit is contained in:
parent
800ec1a349
commit
72095914a9
2 changed files with 41 additions and 20 deletions
25
.editorconfig
Normal file
25
.editorconfig
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
[*.cs]
|
||||
|
||||
# CS1998: Async method lacks 'await' operators and will run synchronously
|
||||
dotnet_diagnostic.CS1998.severity = none
|
||||
|
||||
# IDE0055: Fix formatting
|
||||
dotnet_diagnostic.IDE0055.severity = none
|
||||
|
||||
# CA1822: Mark members as static
|
||||
dotnet_diagnostic.CA1822.severity = none
|
||||
|
||||
# Default severity for all analyzer diagnostics
|
||||
dotnet_analyzer_diagnostic.severity = none
|
||||
|
||||
# IDE0063: Use simple 'using' statement
|
||||
csharp_prefer_simple_using_statement = false
|
||||
|
||||
# IDE0057: Use range operator
|
||||
csharp_style_prefer_range_operator = false
|
||||
|
||||
# IDE0047: Remove unnecessary parentheses
|
||||
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
|
||||
|
||||
# IDE0047: Remove unnecessary parentheses
|
||||
dotnet_diagnostic.IDE0047.severity = none
|
||||
Loading…
Add table
Add a link
Reference in a new issue