-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy path.editorconfig
More file actions
32 lines (23 loc) · 917 Bytes
/
Copy path.editorconfig
File metadata and controls
32 lines (23 loc) · 917 Bytes
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
[*.cs]
# CA1510: Can't be used in netstandart 2.0
dotnet_diagnostic.CA1510.severity = silent
# Just because I don't like this rule
dotnet_diagnostic.IDE0290.severity = silent
# For now increase I do not beleive in small is always better
MA0051.maximum_lines_per_method = 150
MA0051.maximum_statements_per_method = 100
# Only validate the first type in a file
MA0048.only_validate_first_type = true
# MA0110: Use the Regex source generator
# Not supported in netstandard 2.0 and 2.1
# so can't be used in this project
dotnet_diagnostic.MA0110.severity = none
# not supported in netstandard 2.0
dotnet_diagnostic.MA0111.severity = none
# not supported in netstandard 2.0
dotnet_diagnostic.MA0089.severity = none
# not supported in netstandart 2.0
dotnet_diagnostic.RCS1261.severity = none
# Resolve TODO
# TODO will not be fix soon so reduce the warning level
dotnet_diagnostic.MA0026.severity = suggestion