-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
31 lines (26 loc) · 1.3 KB
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[*]
charset = utf-8
end_of_line = crlf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
[*.xml]
indent_size = 2
[*.cs]
indent_size = 2
csharp_style_var_for_built_in_types = true:silent
csharp_style_var_when_type_is_apparent = true:silent
csharp_style_var_elsewhere = true:silent
# Core Analyzers
dotnet_diagnostic.CA1716.severity = None # Don't use reserved keywords for types
dotnet_diagnostic.CA1707.severity = None # Do not use underscores in method names
dotnet_diagnostic.CA1000.severity = None # Do not declare static fields in generic types
## Sonar Analyzers
dotnet_diagnostic.S4144.severity = None # Update this method so that its implementation is not identical to 'blah'
dotnet_diagnostic.S3925.severity = None # Update this implementation of 'ISerializable' to conform to the recommended serialization pattern
dotnet_diagnostic.S1199.severity = None # Extract this nested code block into a separate method
dotnet_diagnostic.S3459.severity = None # Remove unassigned auto-property 'Blah', or set its value
dotnet_diagnostic.S1144.severity = None # Remove the unused private set accessor in property 'Version'
dotnet_diagnostic.S3903.severity = None # Move type into named namespace
# IDE Analyzers
dotnet_diagnostic.IDE1006.severity = None # Do not use underscores in method names