forked from cuellius/decomp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
28 lines (19 loc) · 810 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
[*.cs]
# CA1060: Move pinvokes to native methods class
dotnet_diagnostic.CA1060.severity = none
# CA1806: Do not ignore method results
dotnet_diagnostic.CA1806.severity = none
# CA1822: Mark members as static
dotnet_diagnostic.CA1822.severity = none
# CA1031: Do not catch general exception types
dotnet_diagnostic.CA1031.severity = none
# CA1724: Type names should not match namespaces
dotnet_diagnostic.CA1724.severity = none
# CA1034: Nested types should not be visible
dotnet_diagnostic.CA1034.severity = none
# CA3075: Insecure DTD processing in XML
dotnet_diagnostic.CA3075.severity = none
# CA3075: Mark assemblies with NeutralResourcesLanguageAttribute
dotnet_diagnostic.CA1824.severity = none
# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = none