-
Notifications
You must be signed in to change notification settings - Fork 5
/
analyzers.ruleset
25 lines (20 loc) · 1.05 KB
/
analyzers.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
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="Static Analysis Rules" ToolsVersion="15.0">
<!-- For detailed rule descriptions, please refer to https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/DOCUMENTATION.md -->
<Rules AnalyzerId="Microsoft.NetCore.Analyzers" RuleNamespace="Microsoft.NetCore.Analyzers.Runtime">
<!-- CA1303:DoNotPassLiteralsAsLocalizedParameters -->
<!-- TODO: Should be enabled as part of UI work. Issue #18 -->
<Rule Id="CA1303" Action="None" />
</Rules>
<!-- Rule documentation: https://github.com/DotNetAnalyzers/StyleCopAnalyzers/tree/master/documentation -->
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
<!-- SA1101:PrefixLocalCallsWithThis -->
<Rule Id="SA1101" Action="None" />
<!-- SX1101:DoNotPrefixLocalMembersWithThis -->
<Rule Id="SX1101" Action="Warning" />
<!-- SA1633:FileMustHaveHeader -->
<Rule Id="SA1633" Action="None" />
<!-- CA1805:DoNotInitializeUnnecessarily -->
<Rule Id="CA1805" Action="None" />
</Rules>
</RuleSet>