forked from stephanstapel/ZUGFeRD-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
43 lines (32 loc) · 1.57 KB
/
.editorconfig
File metadata and controls
43 lines (32 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# top-most EditorConfig file
root = true
# All C# files
[*.cs]
# Indentation settings
indent_style = space
indent_size = 4
# Remove trailing whitespace
trim_trailing_whitespace = true
# Insert final newline
insert_final_newline = true
# C# specific rules
dotnet_style_require_accessibility_modifiers = always:error
dotnet_sort_system_directives_first = true:error
dotnet_remove_unnecessary_imports_on_save = false
dotnet_naming_rule.interface_should_be_begins_with_i.severity = error
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
dotnet_naming_rule.types_should_be_pascal_case.severity = error
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = error
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
dotnet_naming_symbols.local_variables.applicable_kinds = local
dotnet_naming_symbols.local_variables.applicable_accessibilities = *
dotnet_naming_style.camel_case_style.capitalization = camel_case
dotnet_naming_rule.local_variables_must_be_camel_case.severity = error
dotnet_naming_rule.local_variables_must_be_camel_case.symbols = local_variables
dotnet_naming_rule.local_variables_must_be_camel_case.style = camel_case_style
csharp_space_after_keywords_in_control_flow_statements = true
csharp_new_line_before_open_brace = all