Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAppCoreNet.ruleset
More file actions
Latest commit
29 lines (22 loc) · 1020 Bytes
/
Copy pathAppCoreNet.ruleset
File metadata and controls
29 lines (22 loc) · 1020 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
<?xml version="1.0" encoding="utf-8"?>
<RuleSetName="AppCoreNet"ToolsVersion="10.0">
<!-- https://github.com/DotNetAnalyzers/StyleCopAnalyzers/tree/master/documentation -->
<RulesAnalyzerId="StyleCop.Analyzers"RuleNamespace="StyleCop.Analyzers">
<!-- Do not warn if no documentation is built -->
<RuleId="SA0001"Action="None" />
<!-- Closing square bracket should be followed by a space doesnt work with nullable arrays -->
<RuleId="SA1011"Action="None"/>
<!-- Local calls do not need 'this' -->
<RuleId="SA1101"Action="None" />
<!-- Allow properties before constructor -->
<RuleId="SA1201"Action="None"/>
<!-- Require underscore for field prefixes -->
<RuleId="SA1309"Action="None" />
<RuleId="SX1309"Action="Error" />
<!-- No braces for single-line statements -->
<RuleId="SA1503"Action="None" />
<!-- Members should be documented -->
<RuleId="SA1600"Action="Info"/>
<RuleId="SA1633"Action="Info"/>
</Rules>
</RuleSet>