-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
93 lines (64 loc) · 2.7 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
root = true
[*.{cs,ttsql,sql,ts,tsx,js,css,scss,json,xml}]
end_of_line = lf
charset = utf-8-bom
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.cs]
# Use collection initializers or expressions (IDE0028)
dotnet_diagnostic.IDE0028.severity = none
# Remove unused private member (IDE0051)
dotnet_diagnostic.IDE0051.severity = none
# IDE0059: Unnecessary assignment of a value
dotnet_diagnostic.IDE0059.severity = none
# Use compound assignment (IDE0054 and IDE0074)
dotnet_diagnostic.IDE0054.severity = none
# Use index operator (IDE0056)
dotnet_diagnostic.IDE0056.severity = none
# Use range operator (IDE0057)
dotnet_diagnostic.IDE0057.severity = none
# Use simple 'using' statement (IDE0063)
dotnet_diagnostic.IDE0063.severity = none
# Use switch expression (IDE0066)
dotnet_diagnostic.IDE0066.severity = none
# Use compound assignment (IDE0054 and IDE0074)
dotnet_diagnostic.IDE0074.severity = none
# Simplify new expression (IDE0090)
dotnet_diagnostic.IDE0090.severity = none
# Namespace does not match folder structure (IDE0130)
dotnet_diagnostic.IDE0130.severity = none
# Use primary constructor (IDE0290)
dotnet_diagnostic.IDE0290.severity = none
# Use collection expression for fluent (IDE0305)
dotnet_diagnostic.IDE0305.severity = none
# IDE1006: Naming Styles
dotnet_diagnostic.IDE1006.severity = none
# CA1002: Do not expose generic lists
dotnet_diagnostic.CA1002.severity = none
# CA1024: Use properties where appropriate
dotnet_diagnostic.CA1024.severity = none
# CA1032: Implement standard exception constructors
dotnet_diagnostic.CA1032.severity = none
# CA1044: Properties should not be write only
dotnet_diagnostic.CA1044.severity = none
# CA1051: Do not declare visible instance fields
dotnet_diagnostic.CA1051.severity = none
# CA1707: Identifiers should not contain underscores
dotnet_diagnostic.CA1707.severity = none
# CA1710: Identifiers should have correct suffix
dotnet_diagnostic.CA1710.severity = none
# CA1711: Identifiers should not have incorrect suffix
dotnet_diagnostic.CA1711.severity = none
# CA1720: Identifier contains type name
dotnet_diagnostic.CA1720.severity = none
# CA1724: Type names should not match namespaces
dotnet_diagnostic.CA1724.severity = none
# CA1725: Parameter names should match base declaration
dotnet_diagnostic.CA1725.severity = none
# CA1819: Properties should not return arrays
dotnet_diagnostic.CA1819.severity = none
# CA2201: Do not raise reserved exception types
#dotnet_diagnostic.CA2201.severity = none
# CA2225: Operator overloads have named alternates
dotnet_diagnostic.CA2225.severity = none