Add initial stub files · microsoft/VSConfigFinder@2f1b481 (original) (raw)
``
1
+
``
2
`+
All files
`
``
3
`+
[*]
`
``
4
`+
indent_style = space
`
``
5
`+
dotnet_style_operator_placement_when_wrapping = beginning_of_line
`
``
6
`+
tab_width = 4
`
``
7
`+
indent_size = 4
`
``
8
`+
end_of_line = crlf
`
``
9
`+
csharp_indent_labels = one_less_than_current
`
``
10
`+
dotnet_style_coalesce_expression = true:suggestion
`
``
11
`+
dotnet_style_null_propagation = true:suggestion
`
``
12
`+
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
`
``
13
`+
dotnet_style_prefer_auto_properties = true:silent
`
``
14
`+
dotnet_style_object_initializer = true:suggestion
`
``
15
`+
dotnet_style_collection_initializer = true:suggestion
`
``
16
`+
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
`
``
17
`+
dotnet_style_prefer_conditional_expression_over_assignment = true:silent
`
``
18
`+
csharp_using_directive_placement = outside_namespace:silent
`
``
19
`+
csharp_prefer_simple_using_statement = true:suggestion
`
``
20
`+
csharp_prefer_braces = true:silent
`
``
21
`+
csharp_style_namespace_declarations = block_scoped:silent
`
``
22
`+
csharp_style_prefer_method_group_conversion = true:silent
`
``
23
`+
csharp_style_prefer_top_level_statements = true:silent
`
``
24
`+
csharp_style_expression_bodied_methods = false:silent
`
``
25
`+
csharp_style_expression_bodied_constructors = false:silent
`
``
26
`+
csharp_style_expression_bodied_operators = false:silent
`
``
27
`+
csharp_style_expression_bodied_properties = true:silent
`
``
28
`+
csharp_style_expression_bodied_indexers = true:silent
`
``
29
`+
csharp_style_expression_bodied_accessors = true:silent
`
``
30
`+
csharp_style_expression_bodied_lambdas = true:silent
`
``
31
`+
csharp_style_expression_bodied_local_functions = false:silent
`
``
32
`+
csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
`
``
33
`+
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
`
``
34
`+
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
`
``
35
`+
csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true:silent
`
``
36
`+
csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true:silent
`
``
37
`+
csharp_new_line_before_open_brace = all
`
``
38
+
``
39
`+
Xml files
`
``
40
`+
[*.xml]
`
``
41
`+
indent_size = 2
`
``
42
+
``
43
`+
[*.{cs,vb}]
`
``
44
`+
Naming styles
`
``
45
+
``
46
`+
Naming rules
`
``
47
+
``
48
`+
dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
`
``
49
`+
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
`
``
50
`+
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
`
``
51
+
``
52
`+
dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
`
``
53
`+
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
`
``
54
`+
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
`
``
55
+
``
56
`+
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
`
``
57
`+
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
`
``
58
`+
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
`
``
59
+
``
60
`+
Symbol specifications
`
``
61
+
``
62
`+
dotnet_naming_symbols.interface.applicable_kinds = interface
`
``
63
`+
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
`
``
64
`+
dotnet_naming_symbols.interface.required_modifiers =
`
``
65
+
``
66
`+
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
`
``
67
`+
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
`
``
68
`+
dotnet_naming_symbols.types.required_modifiers =
`
``
69
+
``
70
`+
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
`
``
71
`+
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
`
``
72
`+
dotnet_naming_symbols.non_field_members.required_modifiers =
`
``
73
+
``
74
`+
Naming styles
`
``
75
+
``
76
`+
dotnet_naming_style.begins_with_i.required_prefix = I
`
``
77
`+
dotnet_naming_style.begins_with_i.required_suffix =
`
``
78
`+
dotnet_naming_style.begins_with_i.word_separator =
`
``
79
`+
dotnet_naming_style.begins_with_i.capitalization = pascal_case
`
``
80
+
``
81
`+
dotnet_naming_style.pascal_case.required_prefix =
`
``
82
`+
dotnet_naming_style.pascal_case.required_suffix =
`
``
83
`+
dotnet_naming_style.pascal_case.word_separator =
`
``
84
`+
dotnet_naming_style.pascal_case.capitalization = pascal_case
`
``
85
+
``
86
`+
dotnet_naming_style.pascal_case.required_prefix =
`
``
87
`+
dotnet_naming_style.pascal_case.required_suffix =
`
``
88
`+
dotnet_naming_style.pascal_case.word_separator =
`
``
89
`+
dotnet_naming_style.pascal_case.capitalization = pascal_case
`
``
90
`+
dotnet_style_allow_multiple_blank_lines_experimental = true:silent
`
``
91
`+
dotnet_style_allow_statement_immediately_after_block_experimental = true:silent
`