Skip to content

Commit d5693d9

Browse files
author
Nigel Sampson
committed
Caliburn-Micro#574 Create an .editorconfig
May not be exactly want we want long term but its a start.
1 parent b8c8b4f commit d5693d9

File tree

1 file changed

+147
-0
lines changed

1 file changed

+147
-0
lines changed

.editorconfig

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
# EditorConfig is awesome:
2+
http://EditorConfig.org
3+
4+
# top-most EditorConfig file
5+
root = true
6+
7+
# Default settings:
8+
# A newline ending every file
9+
# Use 4 spaces as indentation
10+
[*]
11+
insert_final_newline = true
12+
indent_style = space
13+
indent_size = 4
14+
15+
# C# files
16+
[*.cs]
17+
# New line preferences
18+
csharp_new_line_before_open_brace = all
19+
csharp_new_line_before_else = true
20+
csharp_new_line_before_catch = true
21+
csharp_new_line_before_finally = true
22+
csharp_new_line_before_members_in_object_initializers = true
23+
csharp_new_line_before_members_in_anonymous_types = true
24+
csharp_new_line_between_query_expression_clauses = true
25+
26+
# Indentation preferences
27+
csharp_indent_block_contents = true
28+
csharp_indent_braces = false
29+
csharp_indent_case_contents = true
30+
csharp_indent_switch_labels = true
31+
csharp_indent_labels = one_less_than_current
32+
33+
# avoid this. unless absolutely necessary
34+
dotnet_style_qualification_for_field = false:suggestion
35+
dotnet_style_qualification_for_property = false:suggestion
36+
dotnet_style_qualification_for_method = false:suggestion
37+
dotnet_style_qualification_for_event = false:suggestion
38+
39+
# only use var when it's obvious what the variable type is
40+
csharp_style_var_for_built_in_types = false:none
41+
csharp_style_var_when_type_is_apparent = false:none
42+
csharp_style_var_elsewhere = false:suggestion
43+
44+
# use language keywords instead of BCL types
45+
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
46+
dotnet_style_predefined_type_for_member_access = true:suggestion
47+
48+
# name all constant fields using PascalCase
49+
dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
50+
dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
51+
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
52+
53+
dotnet_naming_symbols.constant_fields.applicable_kinds = field
54+
dotnet_naming_symbols.constant_fields.required_modifiers = const
55+
56+
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
57+
58+
# static fields should have s_ prefix
59+
dotnet_naming_rule.static_fields_should_have_prefix.severity = suggestion
60+
dotnet_naming_rule.static_fields_should_have_prefix.symbols = static_fields
61+
dotnet_naming_rule.static_fields_should_have_prefix.style = static_prefix_style
62+
63+
dotnet_naming_symbols.static_fields.applicable_kinds = field
64+
dotnet_naming_symbols.static_fields.required_modifiers = static
65+
66+
dotnet_naming_style.static_prefix_style.capitalization = pascal_case
67+
68+
# internal and private fields should be _camelCase
69+
dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
70+
dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
71+
dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
72+
73+
dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
74+
dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
75+
76+
dotnet_naming_style.camel_case_underscore_style.required_prefix = _
77+
dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
78+
79+
# Code style defaults
80+
dotnet_sort_system_directives_first = true
81+
csharp_preserve_single_line_blocks = true
82+
csharp_preserve_single_line_statements = false
83+
84+
# Expression-level preferences
85+
dotnet_style_object_initializer = true:suggestion
86+
dotnet_style_collection_initializer = true:suggestion
87+
dotnet_style_explicit_tuple_names = true:suggestion
88+
dotnet_style_coalesce_expression = true:suggestion
89+
dotnet_style_null_propagation = true:suggestion
90+
91+
# Expression-bodied members
92+
csharp_style_expression_bodied_methods = false:none
93+
csharp_style_expression_bodied_constructors = false:none
94+
csharp_style_expression_bodied_operators = false:none
95+
csharp_style_expression_bodied_properties = true:none
96+
csharp_style_expression_bodied_indexers = true:none
97+
csharp_style_expression_bodied_accessors = true:none
98+
99+
# Pattern matching
100+
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
101+
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
102+
csharp_style_inlined_variable_declaration = true:suggestion
103+
104+
# Null checking preferences
105+
csharp_style_throw_expression = true:suggestion
106+
csharp_style_conditional_delegate_call = true:suggestion
107+
108+
# Space preferences
109+
csharp_space_after_cast = false
110+
csharp_space_after_colon_in_inheritance_clause = true
111+
csharp_space_after_comma = true
112+
csharp_space_after_dot = false
113+
csharp_space_after_keywords_in_control_flow_statements = true
114+
csharp_space_after_semicolon_in_for_statement = true
115+
csharp_space_around_binary_operators = before_and_after
116+
csharp_space_around_declaration_statements = do_not_ignore
117+
csharp_space_before_colon_in_inheritance_clause = true
118+
csharp_space_before_comma = false
119+
csharp_space_before_dot = false
120+
csharp_space_before_open_square_brackets = false
121+
csharp_space_before_semicolon_in_for_statement = false
122+
csharp_space_between_empty_square_brackets = false
123+
csharp_space_between_method_call_empty_parameter_list_parentheses = false
124+
csharp_space_between_method_call_name_and_opening_parenthesis = false
125+
csharp_space_between_method_call_parameter_list_parentheses = false
126+
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
127+
csharp_space_between_method_declaration_name_and_open_parenthesis = false
128+
csharp_space_between_method_declaration_parameter_list_parentheses = false
129+
csharp_space_between_parentheses = false
130+
csharp_space_between_square_brackets = false
131+
132+
[*.{asm,inc}]
133+
indent_size = 8
134+
135+
# Xml project files
136+
[*.{csproj,vcxproj,vcxproj.filters,proj,nativeproj,locproj}]
137+
indent_size = 2
138+
139+
# Xml config files
140+
[*.{props,targets,config,nuspec}]
141+
indent_size = 2
142+
143+
[CMakeLists.txt]
144+
indent_size = 2
145+
146+
[*.cmd]
147+
indent_size = 2

0 commit comments

Comments
 (0)