forked from mu-arch/ComfyMods
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.editorconfig
39 lines (25 loc) · 930 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
[*]
guidelines = 120
[*.cs]
# IDE0003: Remove qualification
dotnet_diagnostic.IDE0003.severity = none
# IDE0051: Remove unused private members
dotnet_diagnostic.IDE0051.severity = none
# IDE0060: Remove unused parameter
dotnet_diagnostic.IDE0060.severity = none
# IDE0066: Convert switch statement to expression
dotnet_diagnostic.IDE0066.severity = none
# IDE0090: 'new' expression can be simplified
dotnet_diagnostic.IDE0090.severity = none
# CS8632: Nullable reference types should only be used within a '#nullable' annotations context
dotnet_diagnostic.CS8632.severity = none
# IDE0290: Use primary constructor
csharp_style_prefer_primary_constructors = false
# IDE0305: Simplify collection initialization
dotnet_diagnostic.IDE0305.severity = none
# IDE0306: Simplify collection initialization
dotnet_diagnostic.IDE0306.severity = none
[*.{cs,vb,json,csproj,md}]
tab_width = 2
indent_size = 2
end_of_line = lf