Merge pull request #4 from microsoft/dev/sknam/update-commandline-par… · microsoft/VSConfigFinder@3156247 (original) (raw)

``

1

`+

file_header_template = \nCopyright (C) Microsoft Corporation. All rights reserved.\nLicensed under the MIT license. See LICENSE.txt in the project root for license information.\n

`

1

2

``

2

3

`# All files

`

3

4

`[*]

`

`@@ -15,7 +16,7 @@ dotnet_style_object_initializer = true:suggestion

`

15

16

`dotnet_style_collection_initializer = true:suggestion

`

16

17

`dotnet_style_prefer_simplified_boolean_expressions = true:suggestion

`

17

18

`dotnet_style_prefer_conditional_expression_over_assignment = true:silent

`

18

``

`-

csharp_using_directive_placement = inside_namespace:silent

`

``

19

`+

csharp_using_directive_placement = inside_namespace:error

`

19

20

`csharp_prefer_simple_using_statement = true:suggestion

`

20

21

`csharp_prefer_braces = true:silent

`

21

22

`csharp_style_namespace_declarations = block_scoped:silent

`

`@@ -35,6 +36,31 @@ csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimenta

`

35

36

`csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true:silent

`

36

37

`csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true:silent

`

37

38

`csharp_new_line_before_open_brace = all

`

``

39

`+

csharp_style_throw_expression = true:suggestion

`

``

40

`+

csharp_prefer_simple_default_expression = true:suggestion

`

``

41

`+

csharp_style_prefer_null_check_over_type_check = true:suggestion

`

``

42

`+

csharp_style_prefer_local_over_anonymous_function = true:suggestion

`

``

43

`+

csharp_style_prefer_index_operator = true:suggestion

`

``

44

`+

csharp_style_prefer_range_operator = true:suggestion

`

``

45

`+

csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion

`

``

46

`+

csharp_style_prefer_tuple_swap = true:suggestion

`

``

47

`+

csharp_style_prefer_utf8_string_literals = true:suggestion

`

``

48

`+

csharp_style_inlined_variable_declaration = true:suggestion

`

``

49

`+

csharp_style_deconstructed_variable_declaration = true:suggestion

`

``

50

`+

csharp_style_unused_value_assignment_preference = discard_variable:suggestion

`

``

51

`+

csharp_style_unused_value_expression_statement_preference = discard_variable:silent

`

``

52

`+

csharp_prefer_static_local_function = true:suggestion

`

``

53

`+

csharp_style_prefer_readonly_struct = true:suggestion

`

``

54

`+

csharp_style_conditional_delegate_call = true:suggestion

`

``

55

`+

csharp_style_prefer_switch_expression = true:suggestion

`

``

56

`+

csharp_style_prefer_pattern_matching = true:silent

`

``

57

`+

csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion

`

``

58

`+

csharp_style_pattern_matching_over_as_with_null_check = true:suggestion

`

``

59

`+

csharp_style_prefer_not_pattern = true:suggestion

`

``

60

`+

csharp_style_prefer_extended_property_pattern = true:suggestion

`

``

61

`+

csharp_style_var_for_built_in_types = true:silent

`

``

62

`+

csharp_style_var_when_type_is_apparent = true:silent

`

``

63

`+

csharp_style_var_elsewhere = true:silent

`

38

64

``

39

65

`# Xml files

`

40

66

`[*.xml]

`

`@@ -89,3 +115,28 @@ dotnet_naming_style.pascal_case.word_separator =

`

89

115

`dotnet_naming_style.pascal_case.capitalization = pascal_case

`

90

116

`dotnet_style_allow_multiple_blank_lines_experimental = true:silent

`

91

117

`dotnet_style_allow_statement_immediately_after_block_experimental = true:silent

`

``

118

+

``

119

`+

Diagnostics

`

``

120

+

``

121

`+

CS8603: Possible null reference return.

`

``

122

`+

dotnet_diagnostic.CS8603.severity = error

`

``

123

`+

dotnet_style_namespace_match_folder = true:suggestion

`

``

124

`+

dotnet_style_prefer_conditional_expression_over_return = true:silent

`

``

125

`+

dotnet_style_explicit_tuple_names = true:suggestion

`

``

126

`+

dotnet_style_prefer_inferred_tuple_names = true:suggestion

`

``

127

`+

dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion

`

``

128

`+

dotnet_style_prefer_compound_assignment = true:suggestion

`

``

129

`+

dotnet_style_prefer_simplified_interpolation = true:suggestion

`

``

130

`+

dotnet_style_readonly_field = true:suggestion

`

``

131

`+

dotnet_style_predefined_type_for_locals_parameters_members = true:silent

`

``

132

`+

dotnet_style_predefined_type_for_member_access = true:silent

`

``

133

`+

dotnet_style_require_accessibility_modifiers = for_non_interface_members:silent

`

``

134

`+

dotnet_code_quality_unused_parameters = all:warning

`

``

135

`+

dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent

`

``

136

`+

dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent

`

``

137

`+

dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent

`

``

138

`+

dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent

`

``

139

`+

dotnet_style_qualification_for_field = false:silent

`

``

140

`+

dotnet_style_qualification_for_property = false:silent

`

``

141

`+

dotnet_style_qualification_for_method = false:silent

`

``

142

`+

dotnet_style_qualification_for_event = false:silent

`