forked from 0xC0000054/pdn-webp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
34 lines (28 loc) · 1014 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
# EditorConfig is awesome:http://EditorConfig.org
# Top-most EditorConfig file
root = true
[*.cs]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
# Newline settings
csharp_new_line_before_open_brace = all
csharp_new_line_before_else = true
csharp_new_line_before_catch = true
csharp_new_line_before_finally = true
csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_before_members_in_anonymous_types = true
csharp_new_line_between_query_expression_clauses = true
# Expression-bodied member settings
csharp_style_expression_bodied_methods = false:none
csharp_style_expression_bodied_constructors = false:none
csharp_style_expression_bodied_operators = false:none
csharp_style_expression_bodied_properties = false:none
csharp_style_expression_bodied_indexers = false:none
csharp_style_expression_bodied_accessors = false:none
# Code block settings
csharp_prefer_braces = true:warning
[*.{cpp,h}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true