-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
72 lines (52 loc) · 2.65 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
69
70
71
[*.cs]
# CA1303: Do not pass literals as localized parameters
# We don't localize
dotnet_diagnostic.CA1303.severity = none
# CA2007: Consider calling ConfigureAwait on the awaited task
# Disabled because while explicitly calling configureAwait might make sense, the opposite literally never applies in this program, and probably never will.
dotnet_diagnostic.CA2007.severity = none
# CA2227: Collection properties should be read only
# Disabled globally because we only really do this for DTOs, which there are a few of.
dotnet_diagnostic.CA2227.severity = none
# CA1031: Do not catch general exception types
# Disabled because explicitly stating every single error type that may occur inside SDKs and the like isn't possible,
# and trying would just add bugs in the form of uncaught errors that are not handled properly.
dotnet_diagnostic.CA1031.severity = none
# CA1054: Uri parameters should not be strings
# Namespaces are URIs only in a perfect world, they may be anything.