-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
68 lines (48 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Remove the line below if you want to inherit .editorconfig settings from higher directories
root = true
# C# files
[*.cs]
#### Core EditorConfig Options ####
# Indentation and spacing
indent_size = 4
indent_style = space
tab_width = 4
#### .NET Coding Conventions ####
# Modifier preferences
dotnet_style_require_accessibility_modifiers = omit_if_default
#### C# Coding Conventions ####
# var preferences
csharp_style_var_elsewhere = true
csharp_style_var_for_built_in_types = true
csharp_style_var_when_type_is_apparent = true
# Expression-level preferences
csharp_style_implicit_object_creation_when_type_is_apparent = false
csharp_style_prefer_range_operator = false
# Pattern matching preferences
csharp_style_prefer_pattern_matching = false
csharp_style_prefer_switch_expression = false
# Modifier preferences
csharp_style_prefer_readonly_struct_member = false
# Expression-level preferences
csharp_style_implicit_object_creation_when_type_is_apparent = false
#### C# Formatting Rules ####
# New line preferences
csharp_new_line_before_catch = false
csharp_new_line_before_else = false
csharp_new_line_before_finally = false
csharp_new_line_before_open_brace = none
# Indentation preferences
csharp_indent_case_contents = false
csharp_indent_case_contents_when_block = false
# Default severity for all analyzer diagnostics
dotnet_analyzer_diagnostic.severity = warning
# IDE0021: コンストラクターにブロック本体を使用する
dotnet_diagnostic.IDE0021.severity = silent
# IDE0022: メソッドにブロック本体を使用する
dotnet_diagnostic.IDE0022.severity = silent
# IDE0023: 変換演算子にブロック本体を使用する
dotnet_diagnostic.IDE0023.severity = silent
# IDE0024: オペレーターにブロック本体を使用する
dotnet_diagnostic.IDE0024.severity = silent
# IDE0046: 条件式に変換します
dotnet_diagnostic.IDE0046.severity = silent