-
Notifications
You must be signed in to change notification settings - Fork 155
/
.editorconfig
45 lines (35 loc) · 960 Bytes
/
.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
root = true
[*]
charset = utf-8
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.{c,h}]
indent_size = none
[*.{yml,yaml}]
indent_size = 2
[*.json]
indent_size = 4
[Dockerfile]
indent_size = 2
[*.php]
block_comment_start = /*
block_comment = *
block_comment_end = */
indent_size = 4
[{*Makefile,.gitmodules}]
indent_style = tab
[CMakeLists.txt]
indent_size = 2
block_comment_start = #[[
block_comment_end = #]]
[*.cs]
dotnet_style_qualification_for_field = false:warning
dotnet_style_qualification_for_property = false:warning
dotnet_style_qualification_for_method = false:warning
dotnet_style_qualification_for_event = false:warning
dotnet_style_require_accessibility_modifiers = never:warning
csharp_style_expression_bodied_methods = true:silent
csharp_style_expression_bodied_properties = true:warning
csharp_style_expression_bodied_indexers = true:warning
csharp_style_expression_bodied_accessors = true:warning