Last active
July 3, 2018 09:04
-
-
Save solrevdev/94e9774bb83e325a457dedee6a900da7 to your computer and use it in GitHub Desktop.
.editorconfig file for vscode and visual studio - work in progress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To learn more about .editorconfig see https://aka.ms/editorconfigdocs | |
root = true | |
# All files | |
[*] | |
indent_style = tab | |
tab_size = 4 | |
# Code files | |
[*.{cs,csx,vb,vbx}] | |
indent_size = 4 | |
end_of_line = crlf | |
# Xml files | |
[*.xml] | |
indent_size = 2 | |
# json files | |
[*.json] | |
indent_size = 2 | |
# whitespace handling | |
trim_trailing_whitespace = true:error | |
insert_final_newline = false | |
# Dotnet code style | |
[*.{cs,vb}] | |
# Organize usings | |
dotnet_sort_system_directives_first = true | |
# Avoid this. unless absolutely necessary | |
dotnet_style_qualification_for_field = false:suggestion | |
dotnet_style_qualification_for_property = false:suggestion | |
dotnet_style_qualification_for_method = false:suggestion | |
dotnet_style_qualification_for_event = false:suggestion | |
# Use language keywords instead of BCL types | |
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion | |
dotnet_style_predefined_type_for_member_access = true:suggestion | |
# suggest more modern language features when available | |
[*.{cs,vb}] | |
dotnet_style_object_initializer = true:suggestion | |
dotnet_style_collection_initializer = true:suggestion | |
dotnet_style_explicit_tuple_names = true:suggestion | |
dotnet_style_prefer_inferred_tuple_names = true:suggestion | |
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion | |
dotnet_style_prefer_auto_properties = false:suggestion | |
dotnet_style_coalesce_expression = true:suggestion | |
dotnet_style_null_propagation = true:suggestion | |
# Naming conventions | |
dotnet_naming_style.pascal_case_style.capitalization = pascal_case | |
# Classes, structs, methods, enums, events, properties, namespaces, delegates must be PascalCase | |
dotnet_naming_rule.general_naming.severity = suggestion | |
dotnet_naming_rule.general_naming.symbols = general | |
dotnet_naming_rule.general_naming.style = pascal_case_style | |
dotnet_naming_symbols.general.applicable_kinds = class,struct,enum,property,method,event,namespace,delegate | |
dotnet_naming_symbols.general.applicable_accessibilities = * | |
# Expression-bodied members | |
[*.cs] | |
csharp_style_expression_bodied_methods = false:suggestion | |
csharp_style_expression_bodied_constructors = false:suggestion | |
csharp_style_expression_bodied_operators = false:suggestion | |
csharp_style_expression_bodied_properties = true:suggestion | |
csharp_style_expression_bodied_indexers = true:suggestion | |
csharp_style_expression_bodied_accessors = true:suggestion | |
csharp_style_expression_bodied_methods = true:suggestion | |
# prefer "var" everywhere | |
csharp_style_var_for_built_in_types = true:suggestion | |
csharp_style_var_when_type_is_apparent = true:suggestion | |
csharp_style_var_elsewhere = true:suggestion | |
# suggest more modern language features when available | |
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion | |
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion | |
csharp_style_inlined_variable_declaration = true:suggestion | |
csharp_style_throw_expression = true:suggestion | |
csharp_style_conditional_delegate_call = true:suggestion | |
# newline settings | |
csharp_new_line_before_open_brace = all | |
csharp_new_line_before_else = true | |
csharp_new_line_before_catch = true | |
csharp_new_line_before_finally = true | |
csharp_new_line_before_members_in_object_initializers = false | |
csharp_new_line_before_members_in_anonymous_types = false | |
# space settings | |
csharp_space_after_cast = true | |
csharp_space_after_keywords_in_control_flow_statements = true | |
csharp_space_between_method_declaration_parameter_list_parentheses = true | |
csharp_space_between_method_call_parameter_list_parentheses = true | |
csharp_space_between_parentheses = control_flow_statements, expressions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment