forked from JimBobSquarePants/ImageProcessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ImageProcessor.ruleset
32 lines (23 loc) · 1.02 KB
/
ImageProcessor.ruleset
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
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="SixLabors" ToolsVersion="15.0">
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
<!--https://github.com/dotnet/roslyn/issues/18117-->
<Rule Id="AD0001" Action="None" />
<!--Using directive should appear within a namespace declaration-->
<Rule Id="SA1200" Action="None" />
<!--Call 'ConfigureAwait(false)'-->
<Rule Id="RCS1090" Action="None" />
<!--A C# code file contains more than one unique type.-->
<Rule Id="SA1402" Action="None" />
<!--The last statement in a multi-line C# initializer or list is missing a trailing comma.-->
<Rule Id="SA1413" Action="None" />
<!--A C# code file is missing a standard file header.-->
<Rule Id="SA1633" Action="None" />
<Rule Id="SA1000" Action="None" />
<Rule Id="SA1009" Action="None" />
<Rule Id="SA1010" Action="None" />
<Rule Id="SA1404" Action="None" />
<Rule Id="SA1515" Action="None" />
<Rule Id="SA1638" Action="None" />
</Rules>
</RuleSet>