-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
38 lines (32 loc) · 1 KB
/
.editorconfig
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
root = true
[*]
insert_final_newline = true
[*.{scm,sld}]
indent_style = space
indent_size = 2
end_of_line = lf
[*.{fs,fsi}]
indent_size=4
indent_style = space
[*.cs]
indent_style = space
indent_size = 4
dotnet_separate_import_directive_groups = true
dotnet_sort_system_directives_first = true
dotnet_style_qualification_for_event = false
dotnet_style_qualification_for_field = false
dotnet_style_qualification_for_method = false
dotnet_style_qualification_for_property = false
dotnet_style_predefined_type_for_locals_parameters_members = true
dotnet_style_predefined_type_for_member_access = true
dotnet_style_require_accessibility_modifiers = for_non_interface_members
dotnet_style_operator_placement_when_wrapping = end_of_line
dotnet_style_allow_multiple_blank_lines_experimental = true
dotnet_style_allow_statement_immediately_after_block_experimental = false
csharp_style_namespace_declarations = file_scoped
[*.json]
indent_style = space
indent_size = 2
[*.{targets,props}]
indent_style = space
indent_size = 2