-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
165 lines (128 loc) · 6.71 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
[*.cs]
dotnet_diagnostic.CA2252.severity = none
dotnet_diagnostic.SA1101.severity = none
dotnet_diagnostic.SA1309.severity = none
dotnet_diagnostic.SA1310.severity = none
dotnet_diagnostic.SX1309.severity = warning
dotnet_diagnostic.SX1309S.severity = warning
dotnet_diagnostic.SA1000.severity = none
dotnet_diagnostic.SA1009.severity = none
csharp_style_namespace_declarations = file_scoped:warning
dotnet_diagnostic.SA1116.severity = none
csharp_using_directive_placement = outside_namespace:silent
csharp_prefer_simple_using_statement = true:suggestion
csharp_prefer_braces = true:silent
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_top_level_statements = true:silent
csharp_style_expression_bodied_methods = false:silent
csharp_style_expression_bodied_constructors = false:silent
csharp_style_expression_bodied_operators = false:silent
csharp_style_expression_bodied_properties = true:silent
csharp_style_expression_bodied_indexers = true:silent
csharp_style_expression_bodied_accessors = true:silent
csharp_style_expression_bodied_lambdas = true:silent
csharp_style_expression_bodied_local_functions = false:silent
csharp_style_throw_expression = true:suggestion
csharp_indent_labels = one_less_than_current
# SA1010: Opening square brackets should be spaced correctly
dotnet_diagnostic.SA1010.severity = none
# IDE0290: Use primary constructor
csharp_style_prefer_primary_constructors = false:suggestion
dotnet_diagnostic.SA1602.severity = none
# SA1300: Element should begin with upper-case letter
dotnet_diagnostic.SA1300.severity = none
# IDE1006: Naming Styles
dotnet_diagnostic.IDE1006.severity = none
# SA1011: Closing square brackets should be spaced correctly
dotnet_diagnostic.SA1011.severity = none
dotnet_diagnostic.SA1407.severity = none
# CS1584: XML comment has syntactically incorrect cref attribute
dotnet_diagnostic.CS1584.severity = none
# CS1591: Missing XML comment for publicly visible type or member
dotnet_diagnostic.CS1591.severity = none
# SA1015: Closing generic brackets should be spaced correctly ([Error<ValidationError>] should be valid)
dotnet_diagnostic.SA1015.severity = none
# SA1202: Enum should not follow a class
dotnet_diagnostic.SA1201.severity = none
# SA1402: Only one type per class
dotnet_diagnostic.SA1402.severity = none
# SA1204: Static members before non-static
dotnet_diagnostic.SA1204.severity = none
# SA1502: Element should not be on a single line
dotnet_diagnostic.SA1502.severity = none
# SA1111: Closing parenthesis on last line of param
dotnet_diagnostic.SA1111.severity = none
# IDE0005: Using directive is unnecessary.
dotnet_diagnostic.IDE0005.severity = warning
# SA1516: Elements should be separated by blank line
dotnet_diagnostic.SA1516.severity = none
# CA1822: Mark members as static
dotnet_diagnostic.CA1822.severity = warning
# SA1649: File name should match first type name. Ignore for Razor Pages.
*.cshtml.cs
dotnet_diagnostic.SA1649.severity = none
#### Naming styles ####
# Naming rules
dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
dotnet_naming_rule.private_members_should_be_camel_case.severity=suggestion
dotnet_naming_rule.private_members_should_be_camel_case.symbols=private_fields
dotnet_naming_rule.private_members_should_be_camel_case.style=_private_field_style
# Symbol specifications
dotnet_naming_symbols.private_fields.applicable_kinds = field
dotnet_naming_symbols.private_fields.applicable_accessibilities = private
dotnet_naming_symbols.private_fields.required_modifiers =
dotnet_naming_symbols.interface.applicable_kinds = interface
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.interface.required_modifiers =
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.types.required_modifiers =
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.non_field_members.required_modifiers =
# Naming styles
dotnet_naming_style._private_field_style.required_prefix=_
dotnet_naming_style._private_field_style.required_suffix=
dotnet_naming_style._private_field_style.word_separator=
dotnet_naming_style._private_field_style.capitalization=camel_case
dotnet_naming_style.begins_with_i.required_prefix = I
dotnet_naming_style.begins_with_i.required_suffix =
dotnet_naming_style.begins_with_i.word_separator =
dotnet_naming_style.begins_with_i.capitalization = pascal_case
dotnet_naming_style.pascal_case.required_prefix =
dotnet_naming_style.pascal_case.required_suffix =
dotnet_naming_style.pascal_case.word_separator =
dotnet_naming_style.pascal_case.capitalization = pascal_case
dotnet_naming_style.pascal_case.required_prefix =
dotnet_naming_style.pascal_case.required_suffix =
dotnet_naming_style.pascal_case.word_separator =
dotnet_naming_style.pascal_case.capitalization = pascal_case
###Styling###
dotnet_style_coalesce_expression = true:suggestion
dotnet_style_null_propagation = true:suggestion
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
dotnet_style_prefer_auto_properties = true:silent
dotnet_style_object_initializer = true:suggestion
dotnet_style_collection_initializer = true:suggestion
dotnet_style_operator_placement_when_wrapping = beginning_of_line
tab_width = 4
indent_size = 4
end_of_line = lf
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
dotnet_sort_system_directives_first = true
###Linelength###
# SA1115: Parameter must be on a separate line when the line length exceeds the configured limit
dotnet_diagnostic.SA1115.severity=warning
# SA1117: Part of argument lists splitting when they span multiple lines
dotnet_diagnostic.SA1117.severity=warning
# SA1118: Argument must begin on the next line if the parameter list spans multiple lines
dotnet_diagnostic.SA1118.severity=warning
max_line_length=110