this repo has no description

Add .editorconfig to keep style consistent

Changed files
+137 -1
+131
.editorconfig
··· 1 + ############################### 2 + # Core EditorConfig Options # 3 + ############################### 4 + # All files 5 + [*] 6 + indent_style = space 7 + 8 + # XML project files 9 + [*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}] 10 + indent_size = 2 11 + 12 + # XML config files 13 + [*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}] 14 + indent_size = 2 15 + 16 + # Code files 17 + [*.{cs,csx,vb,vbx}] 18 + indent_size = 4 19 + insert_final_newline = true 20 + charset = utf-8-bom 21 + ############################### 22 + # .NET Coding Conventions # 23 + ############################### 24 + [*.{cs,vb}] 25 + # Organize usings 26 + dotnet_sort_system_directives_first = true 27 + # this. preferences 28 + dotnet_style_qualification_for_field = false:silent 29 + dotnet_style_qualification_for_property = false:silent 30 + dotnet_style_qualification_for_method = false:silent 31 + dotnet_style_qualification_for_event = false:silent 32 + # Language keywords vs BCL types preferences 33 + dotnet_style_predefined_type_for_locals_parameters_members = true:silent 34 + dotnet_style_predefined_type_for_member_access = true:silent 35 + # Parentheses preferences 36 + dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent 37 + dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent 38 + dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent 39 + dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent 40 + # Modifier preferences 41 + dotnet_style_require_accessibility_modifiers = for_non_interface_members:silent 42 + dotnet_style_readonly_field = true:suggestion 43 + # Expression-level preferences 44 + dotnet_style_object_initializer = true:suggestion 45 + dotnet_style_collection_initializer = true:suggestion 46 + dotnet_style_explicit_tuple_names = true:suggestion 47 + dotnet_style_null_propagation = true:suggestion 48 + dotnet_style_coalesce_expression = true:suggestion 49 + dotnet_style_prefer_is_null_check_over_reference_equality_method = true:silent 50 + dotnet_style_prefer_inferred_tuple_names = true:suggestion 51 + dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion 52 + dotnet_style_prefer_auto_properties = true:silent 53 + dotnet_style_prefer_conditional_expression_over_assignment = true:silent 54 + dotnet_style_prefer_conditional_expression_over_return = true:silent 55 + ############################### 56 + # Naming Conventions # 57 + ############################### 58 + # Style Definitions 59 + dotnet_naming_style.pascal_case_style.capitalization = pascal_case 60 + # Use PascalCase for constant fields 61 + dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion 62 + dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields 63 + dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style 64 + dotnet_naming_symbols.constant_fields.applicable_kinds = field 65 + dotnet_naming_symbols.constant_fields.applicable_accessibilities = * 66 + dotnet_naming_symbols.constant_fields.required_modifiers = const 67 + ############################### 68 + # C# Coding Conventions # 69 + ############################### 70 + [*.cs] 71 + # var preferences 72 + csharp_style_var_for_built_in_types = true:silent 73 + csharp_style_var_when_type_is_apparent = true:silent 74 + csharp_style_var_elsewhere = true:silent 75 + # Expression-bodied members 76 + csharp_style_expression_bodied_methods = false:silent 77 + csharp_style_expression_bodied_constructors = false:silent 78 + csharp_style_expression_bodied_operators = false:silent 79 + csharp_style_expression_bodied_properties = true:silent 80 + csharp_style_expression_bodied_indexers = true:silent 81 + csharp_style_expression_bodied_accessors = true:silent 82 + # Pattern matching preferences 83 + csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion 84 + csharp_style_pattern_matching_over_as_with_null_check = true:suggestion 85 + # Null-checking preferences 86 + csharp_style_throw_expression = true:suggestion 87 + csharp_style_conditional_delegate_call = true:suggestion 88 + # Modifier preferences 89 + csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion 90 + # Expression-level preferences 91 + csharp_prefer_braces = true:silent 92 + csharp_style_deconstructed_variable_declaration = true:suggestion 93 + csharp_prefer_simple_default_expression = true:suggestion 94 + csharp_style_pattern_local_over_anonymous_function = true:suggestion 95 + csharp_style_inlined_variable_declaration = true:suggestion 96 + ############################### 97 + # C# Formatting Rules # 98 + ############################### 99 + # New line preferences 100 + csharp_new_line_before_open_brace = all 101 + csharp_new_line_before_else = true 102 + csharp_new_line_before_catch = true 103 + csharp_new_line_before_finally = true 104 + csharp_new_line_before_members_in_object_initializers = true 105 + csharp_new_line_before_members_in_anonymous_types = true 106 + csharp_new_line_between_query_expression_clauses = true 107 + # Indentation preferences 108 + csharp_indent_case_contents = true 109 + csharp_indent_switch_labels = true 110 + csharp_indent_labels = flush_left 111 + # Space preferences 112 + csharp_space_after_cast = false 113 + csharp_space_after_keywords_in_control_flow_statements = true 114 + csharp_space_between_method_call_parameter_list_parentheses = false 115 + csharp_space_between_method_declaration_parameter_list_parentheses = false 116 + csharp_space_between_parentheses = false 117 + csharp_space_before_colon_in_inheritance_clause = true 118 + csharp_space_after_colon_in_inheritance_clause = true 119 + csharp_space_around_binary_operators = before_and_after 120 + csharp_space_between_method_declaration_empty_parameter_list_parentheses = false 121 + csharp_space_between_method_call_name_and_opening_parenthesis = false 122 + csharp_space_between_method_call_empty_parameter_list_parentheses = false 123 + # Wrapping preferences 124 + csharp_preserve_single_line_statements = true 125 + csharp_preserve_single_line_blocks = true 126 + ############################### 127 + # VB Coding Conventions # 128 + ############################### 129 + [*.vb] 130 + # Modifier preferences 131 + visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:suggestion
+6 -1
Peridot.sln
··· 7 7 EndProject 8 8 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peridot.Veldrid", "src\Peridot.Veldrid\Peridot.Veldrid.csproj", "{06D982B2-97D8-4C38-9837-50D2EA5E050D}" 9 9 EndProject 10 - Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Peridot.Demo", "src\Peridot.Demo\Peridot.Demo.csproj", "{2B5DA501-2051-4045-A3C7-B5E9C74DE7ED}" 10 + Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peridot.Demo", "src\Peridot.Demo\Peridot.Demo.csproj", "{2B5DA501-2051-4045-A3C7-B5E9C74DE7ED}" 11 11 EndProject 12 12 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F5D6FEB2-6E90-4034-83E4-78BCA8EDDA25}" 13 13 ProjectSection(SolutionItems) = preProject 14 14 src\build\common.props.csproj = src\build\common.props.csproj 15 15 src\build\peridot.png = src\build\peridot.png 16 + EndProjectSection 17 + EndProject 18 + Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Itens de Solução", "Itens de Solução", "{16654221-9CC4-4B02-A329-AC24440396D5}" 19 + ProjectSection(SolutionItems) = preProject 20 + .editorconfig = .editorconfig 16 21 EndProjectSection 17 22 EndProject 18 23 Global