-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
56 lines (49 loc) · 1.72 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
root = true
[*.cs]
charset = utf-8-bom
end_of_line = crlf
indent_style = space
indent_size = 4
insert_final_newline = true
dotnet_sort_system_directives_first = true
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
dotnet_style_readonly_field = true:suggestion
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion
dotnet_style_prefer_conditional_expression_over_return = true:suggestion
# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = none
# IDE0003: Remove qualification
dotnet_style_qualification_for_field = false:none
# IDE0003: Remove qualification
dotnet_style_qualification_for_property = false:none
# IDE0003: Remove qualification
dotnet_style_qualification_for_event = false:none
# IDE0003: Remove qualification
dotnet_style_qualification_for_method = false:none
# Dont offer to convert to block scoped namespaces
dotnet_diagnostic.IDE0160.severity = none
# Dont offer to remove unnecessary suppressions
dotnet_diagnostic.IDE0079.severity = none
# Disable: Move usings outside of namespace declaration
dotnet_diagnostic.IDE0065.severity = none
# Disable: Use explicit type instead of var
dotnet_diagnostic.IDE0008.severity = none
[*.json]
charset = utf-8
end_of_line = crlf
indent_style = space
indent_size = 4
insert_final_newline = true
[*.{xml,config,csproj,props,targets}]
charset = utf-8-bom
end_of_line = crlf
indent_style = space
indent_size = 4
insert_final_newline = true
[*.{ps1,psd1,psm1}]
charset = utf-8-bom
end_of_line = crlf
indent_style = space
indent_size = 4
insert_final_newline = true