-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
.editorconfig
54 lines (39 loc) · 1.59 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
root=true
# Ignore linting for plugins
[Assets/Plugins/**.cs]
generated_code = true
[*.cs]
# Unsupported C# features
dotnet_diagnostic.IDE0090.severity = none
dotnet_diagnostic.IDE0063.severity = none
dotnet_diagnostic.IDE0066.severity = none
dotnet_diagnostic.IDE0054.severity = none
dotnet_diagnostic.IDE0083.severity = none
dotnet_diagnostic.IDE0019.severity = none
dotnet_diagnostic.IDE0251.severity = none
# Unnecessary value assignment
dotnet_diagnostic.IDE0059.severity = none
# Using directive should appear within a namespace declaration
dotnet_diagnostic.SA1200.severity = None
# The file header is missing or not located at the top of the file
dotnet_diagnostic.SA1633.severity = None
# Use string.Empty for empty strings
dotnet_diagnostic.SA1122.severity = None
# Each attribute should be placed on its own line of code
dotnet_diagnostic.SA1134.severity = None
# Type parameter names should begin with T
dotnet_diagnostic.SA1314.severity = None
# Elements should be documented
dotnet_diagnostic.SA1600.severity = None
# Prefix local calls with this
dotnet_diagnostic.SA1101.severity = None
# Comments should contain text
dotnet_diagnostic.SA1120.severity = None
# Constant fields should appear before non-constant fields
dotnet_diagnostic.SA1203.severity = None
# The parameter spans multiple lines
dotnet_diagnostic.SA1118.severity = None
# Enumeration items should be documented
dotnet_diagnostic.SA1602.severity = None
# Readonly fields should appear before non-readonly fields
dotnet_diagnostic.SA1214.severity = None