forked from risk-of-thunder/R2API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
39 lines (27 loc) · 999 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
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.cs]
indent_style = space
indent_size = 4
csharp_style_namespace_declarations = file_scoped:error
dotnet_diagnostic.IDE0161.severity = error
csharp_new_line_before_open_brace = all
# CS1591: Missing XML comment for publicly visible type or member
dotnet_diagnostic.CS1591.severity = suggestion
# IDE0032: Use auto property
dotnet_style_prefer_auto_properties = true:silent
# CS8604: Possible null reference argument.
dotnet_diagnostic.CS8604.severity = suggestion
# CS8602: Dereference of a possibly null reference.
dotnet_diagnostic.CS8602.severity = suggestion
# Accessing a member that was not originally public as suggestion
# We are bound to modify / call private members because of this project nature
dotnet_diagnostic.Publicizer001.severity=suggestion
[*.csproj]
indent_style = space
indent_size = 2