-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.editorconfig
executable file
·49 lines (45 loc) · 2.83 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
root = true
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.csproj]
indent_size = 2
# Code files
[*.{cs,vb}]
dotnet_diagnostic.SA0001.severity = none # SA0001XmlCommentAnalysisDisabled
dotnet_diagnostic.CS0169.severity = none # The private field 'class member' is never used
dotnet_diagnostic.SA1009.severity = none # SA1009ClosingParenthesisMustBeSpacedCorrectly
dotnet_diagnostic.SA1111.severity = none # SA1111ClosingParenthesisMustBeOnLineOfLastParameter
dotnet_diagnostic.SA1201.severity = none # SA1201ElementsMustAppearInTheCorrectOrder
dotnet_diagnostic.SA1202.severity = none # SA1202ElementsMustBeOrderedByAccess
dotnet_diagnostic.SA1203.severity = none # SA1203ConstantsMustAppearBeforeFields
dotnet_diagnostic.SA1204.severity = none # SA1204StaticElementsMustAppearBeforeInstanceElements
dotnet_diagnostic.SA1300.severity = none # SA1300ElementMustBeginWithUpperCaseLetter
dotnet_diagnostic.SA1309.severity = none # SA1309FieldNamesMustNotBeginWithUnderscore
dotnet_diagnostic.SA1402.severity = none # SA1402FileMayOnlyContainASingleType
dotnet_diagnostic.SA1600.severity = none # SA1600ElementsMustBeDocumented
dotnet_diagnostic.SA1601.severity = none # SA1600PartialElementsMustBeDocumented
dotnet_diagnostic.SA1602.severity = none # SA1602EnumerationItemsMustBeDocumented
dotnet_diagnostic.SA1633.severity = none # SA1633FileMustHaveHeader
dotnet_diagnostic.SA1649.severity = none # SA1649FileNameMustMatchTypeName
dotnet_diagnostic.SA1200.severity = suggestion # SA1200UsingDirectivesMustBePlacedCorrectly
dotnet_diagnostic.MA0016.severity = none # MA0016 - Prefer using collection abstraction instead of implementation
dotnet_diagnostic.MA0018.severity = none # MA0018 - Do not declare static members on generic types
dotnet_diagnostic.MA0048.severity = none # MA0048 - File name must match type name
dotnet_diagnostic.MA0051.severity = none # MA0051 - Method is too long
dotnet_diagnostic.MA0076.severity = none # MA0076 - Do not use implicit culture-sensitive ToString in interpolated strings
dotnet_diagnostic.MA0004.severity = none # MA0076 - Use Task.ConfigureAwait
# https://www.jetbrains.com/help/resharper/Reference__Code_Inspections_CSHARP.html
resharper_arrange_trailing_comma_in_multiline_lists_highlighting = none
resharper_comment_typo_highlighting = none
resharper_identifier_typo_highlighting = none
resharper_string_literal_typo_highlighting = none
resharper_unused_auto_property_accessor_global_highlighting = none
resharper_class_never_instantiated_global_highlighting = none
resharper_inconsistent_naming_highlighting = none
resharper_redundant_name_qualifier_highlighting = none
resharper_arrange_this_qualifier_highlighting = none
resharper_unused_member_global_highlighting = none
resharper_member_can_be_private_global_highlighting = none
resharper_out_parameter_value_is_always_discarded_global_highlighting = none