forked from planetarium/lib9c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
49 lines (38 loc) · 1.11 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
39
40
41
42
43
44
45
46
47
48
49
# https://editorconfig.org/
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
tab_width = 8
trim_trailing_whitespace = true
[*.{cs,csproj,md,xml}]
indent_style = space
continuation_indent_size = 4
[*.{cs,md,xml}]
max_line_length = 100
[*.{cs,md}]
indent_size = 4
[{*.{ps1,sh},hooks/*}]
indent_size = 2
[*.{csproj,xml}]
indent_size = 2
quote_type = double
[*.cs]
curly_bracket_next_line = true
spaces_around_operators = true
indent_brace_style = Allman
dotnet_naming_rule.public_members_must_be_capitalized.symbols = public_symbols
dotnet_naming_symbols.public_symbols.applicable_kinds = property,method,field,event,delegate
dotnet_naming_symbols.public_symbols.applicable_accessibilities = public
dotnet_naming_rule.public_members_must_be_capitalized.style = first_word_upper_case_style
dotnet_naming_style.first_word_upper_case_style.capitalization = first_word_upper
dotnet_naming_rule.public_members_must_be_capitalized.severity = warning
dotnet_diagnostic.IDE1006.severity = suggestion
[*.csproj]
quote_type = double
[*.sln]
indent_style = tab
[*.{yaml,yml}]
indent_style = space
indent_size = 2