forked from ProjectStarlight/StarlightRiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
40 lines (27 loc) · 1.2 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
[*.cs]
# RCS1123: Add parentheses according to operator precedence.
dotnet_diagnostic.RCS1123.severity = none
# RCS1018: Add accessibility modifiers.
dotnet_diagnostic.RCS1018.severity = none
# RCS1129: Remove redundant field initalization.
dotnet_diagnostic.RCS1129.severity = none
# RCS1036: Remove redundant empty line.
dotnet_diagnostic.RCS1036.severity = none
# RCS1032: Remove redundant parentheses.
dotnet_diagnostic.RCS1032.severity = none
# IDE0047: Remove unnecessary parentheses
dotnet_diagnostic.IDE0047.severity = none
# IDE0011: Add braces
csharp_prefer_braces = false:none
# CA1815: Override equals and operator equals on value types
dotnet_diagnostic.CA1815.severity = none
# CA1031: Do not catch general exception types
dotnet_diagnostic.CA1031.severity = none
# IDE1006: Naming Styles
dotnet_diagnostic.IDE1006.severity = none
# CA1819: Properties should not return arrays
dotnet_diagnostic.CA1819.severity = none
# ChangeMagicNumberToID: Change magic numbers into appropriate ID values
dotnet_diagnostic.ChangeMagicNumberToID.severity = suggestion
# CS0414: The field 'EnchantmentMinigameHandler.minigameTimer' is assigned but its value is never used
dotnet_diagnostic.CS0414.severity = suggestion