forked from YARC-Official/YARG
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
26 lines (24 loc) · 957 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
[*.{cs,vb}]
# IDE0044: Add readonly modifier
dotnet_diagnostic.IDE0044.severity = none
# IDE0051: Remove unused private members
dotnet_diagnostic.IDE0051.severity = none
# IDE0060: Remove unused parameters
dotnet_diagnostic.IDE0060.severity = silent
# IDE0017: Use object initializers
dotnet_diagnostic.IDE0017.severity = none
# IDE0001: Name can be simplified
dotnet_diagnostic.IDE0001.severity = suggestion
# IDE0031: Null check can be simplified (Unity is stupid)
dotnet_diagnostic.IDE0031.severity = silent
# Formatting
indent_style = tab
csharp_new_line_before_open_brace = none
csharp_new_line_before_else = false
csharp_new_line_before_catch = false
csharp_new_line_before_finally = false
csharp_new_line_before_members_in_object_initializers = false
csharp_new_line_before_members_in_anonymous_types = false
csharp_new_line_between_query_expression_clauses = false
csharp_space_after_cast = true
csharp_space_around_declaration_statements = ignore