forked from ShapeCrawler/ShapeCrawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
36 lines (24 loc) · 1.22 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
[*.cs]
dotnet_diagnostic.CA1051.severity = error
dotnet_diagnostic.CA1305.severity = error
dotnet_diagnostic.CA1310.severity = error
dotnet_diagnostic.CA1717.severity = error
dotnet_diagnostic.CA2007.severity = error
dotnet_diagnostic.CA2211.severity = error
dotnet_diagnostic.CA1720.severity = suggestion
# IDE0044: Add readonly modifier
dotnet_diagnostic.IDE0044.severity = error
# CA1062: In externally visible method 'SeriesCollection.SeriesCollection(IEnumerable<OpenXmlElement> sdkCharts, ChartPart sdkChartPart)', validate parameter 'sdkCharts' is non-null before using it. If appropriate, throw an ArgumentNullException when the argument is null or add a Code Contract precondition asserting non-null argument.
dotnet_diagnostic.CA1062.severity = none
dotnet_diagnostic.IDE0003.severity = none
dotnet_diagnostic.SA1611.severity = none
# SA1124DoNotUseRegions
dotnet_diagnostic.SA1124.severity = none
# SA1200UsingDirectivesMustBePlacedCorrectly
dotnet_diagnostic.SA1200.severity = none
# SA1615ElementReturnValueMustBeDocumented
dotnet_diagnostic.SA1615.severity = none
# SA1413UseTrailingCommasInMultiLineInitializers
dotnet_diagnostic.SA1413.severity = none
# SA1633FileMustHaveHeader
dotnet_diagnostic.SA1633.severity = none