parent
a8e31896e3
commit
ec752f8ab3
@ -0,0 +1,254 @@
|
|||||||
|
# NOTE: Requires **VS2019 16.3** or later
|
||||||
|
|
||||||
|
# Stylecop.ruleset
|
||||||
|
# Description: Rules for Radarr
|
||||||
|
|
||||||
|
# Code files
|
||||||
|
[*.cs]
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
# Sort using and Import directives with System.* appearing first
|
||||||
|
dotnet_sort_system_directives_first = true
|
||||||
|
|
||||||
|
# Avoid "this." and "Me." if not necessary
|
||||||
|
dotnet_style_qualification_for_field = false:refactoring
|
||||||
|
dotnet_style_qualification_for_property = false:refactoring
|
||||||
|
dotnet_style_qualification_for_method = false:refactoring
|
||||||
|
dotnet_style_qualification_for_event = false:refactoring
|
||||||
|
|
||||||
|
# Indentation preferences
|
||||||
|
csharp_indent_block_contents = true
|
||||||
|
csharp_indent_braces = false
|
||||||
|
csharp_indent_case_contents = true
|
||||||
|
csharp_indent_case_contents_when_block = true
|
||||||
|
csharp_indent_switch_labels = true
|
||||||
|
csharp_indent_labels = flush_left
|
||||||
|
|
||||||
|
dotnet_style_qualification_for_field = false:suggestion
|
||||||
|
dotnet_style_qualification_for_property = false:suggestion
|
||||||
|
dotnet_style_qualification_for_method = false:suggestion
|
||||||
|
dotnet_style_qualification_for_event = false:suggestion
|
||||||
|
dotnet_naming_style.instance_field_style.capitalization = camel_case
|
||||||
|
dotnet_naming_style.instance_field_style.required_prefix = _
|
||||||
|
|
||||||
|
# Prefer "var" everywhere
|
||||||
|
csharp_style_var_for_built_in_types = true:suggestion
|
||||||
|
csharp_style_var_when_type_is_apparent = true:suggestion
|
||||||
|
csharp_style_var_elsewhere = true:suggestion
|
||||||
|
|
||||||
|
# Stylecop Rules
|
||||||
|
dotnet_diagnostic.SA0001.severity = none
|
||||||
|
dotnet_diagnostic.SA1005.severity = none
|
||||||
|
dotnet_diagnostic.SA1025.severity = none
|
||||||
|
dotnet_diagnostic.SA1101.severity = none
|
||||||
|
dotnet_diagnostic.SA1116.severity = none
|
||||||
|
dotnet_diagnostic.SA1118.severity = none
|
||||||
|
dotnet_diagnostic.SA1122.severity = none
|
||||||
|
dotnet_diagnostic.SA1201.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1202.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1204.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1300.severity = none
|
||||||
|
dotnet_diagnostic.SA1303.severity = none
|
||||||
|
dotnet_diagnostic.SA1304.severity = none
|
||||||
|
dotnet_diagnostic.SA1306.severity = none
|
||||||
|
dotnet_diagnostic.SA1309.severity = none
|
||||||
|
dotnet_diagnostic.SA1310.severity = none
|
||||||
|
dotnet_diagnostic.SA1401.severity = none
|
||||||
|
dotnet_diagnostic.SA1402.severity = none
|
||||||
|
dotnet_diagnostic.SA1404.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1405.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1406.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1410.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1411.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1413.severity = none
|
||||||
|
dotnet_diagnostic.SA1516.severity = none
|
||||||
|
dotnet_diagnostic.SA1600.severity = none
|
||||||
|
dotnet_diagnostic.SA1601.severity = none
|
||||||
|
dotnet_diagnostic.SA1602.severity = none
|
||||||
|
dotnet_diagnostic.SA1604.severity = none
|
||||||
|
dotnet_diagnostic.SA1605.severity = none
|
||||||
|
dotnet_diagnostic.SA1606.severity = none
|
||||||
|
dotnet_diagnostic.SA1607.severity = none
|
||||||
|
dotnet_diagnostic.SA1608.severity = none
|
||||||
|
dotnet_diagnostic.SA1610.severity = none
|
||||||
|
dotnet_diagnostic.SA1611.severity = none
|
||||||
|
dotnet_diagnostic.SA1612.severity = none
|
||||||
|
dotnet_diagnostic.SA1613.severity = none
|
||||||
|
dotnet_diagnostic.SA1614.severity = none
|
||||||
|
dotnet_diagnostic.SA1615.severity = none
|
||||||
|
dotnet_diagnostic.SA1616.severity = none
|
||||||
|
dotnet_diagnostic.SA1617.severity = none
|
||||||
|
dotnet_diagnostic.SA1618.severity = none
|
||||||
|
dotnet_diagnostic.SA1619.severity = none
|
||||||
|
dotnet_diagnostic.SA1620.severity = none
|
||||||
|
dotnet_diagnostic.SA1621.severity = none
|
||||||
|
dotnet_diagnostic.SA1622.severity = none
|
||||||
|
dotnet_diagnostic.SA1623.severity = none
|
||||||
|
dotnet_diagnostic.SA1624.severity = none
|
||||||
|
dotnet_diagnostic.SA1625.severity = none
|
||||||
|
dotnet_diagnostic.SA1626.severity = none
|
||||||
|
dotnet_diagnostic.SA1627.severity = none
|
||||||
|
dotnet_diagnostic.SA1629.severity = none
|
||||||
|
dotnet_diagnostic.SA1633.severity = none
|
||||||
|
dotnet_diagnostic.SA1634.severity = none
|
||||||
|
dotnet_diagnostic.SA1635.severity = none
|
||||||
|
dotnet_diagnostic.SA1636.severity = none
|
||||||
|
dotnet_diagnostic.SA1637.severity = none
|
||||||
|
dotnet_diagnostic.SA1638.severity = none
|
||||||
|
dotnet_diagnostic.SA1640.severity = none
|
||||||
|
dotnet_diagnostic.SA1641.severity = none
|
||||||
|
dotnet_diagnostic.SA1642.severity = none
|
||||||
|
dotnet_diagnostic.SA1643.severity = none
|
||||||
|
dotnet_diagnostic.SA1648.severity = none
|
||||||
|
dotnet_diagnostic.SA1649.severity = none
|
||||||
|
dotnet_diagnostic.SA1651.severity = none
|
||||||
|
dotnet_diagnostic.SX1101.severity = warning
|
||||||
|
dotnet_diagnostic.SX1309.severity = warning
|
||||||
|
|
||||||
|
# Microsoft Analyzers that fail and need to be sorted thru
|
||||||
|
dotnet_diagnostic.ASP0000.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1000.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1001.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1003.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1008.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1010.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1012.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1014.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1016.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1017.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1018.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1019.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1021.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1024.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1027.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1028.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1030.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1031.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1032.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1033.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1034.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1036.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1040.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1041.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1043.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1044.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1050.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1051.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1052.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1054.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1055.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1056.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1058.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1060.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1061.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1062.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1063.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1064.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1065.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1066.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1067.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1068.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1069.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1200.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1303.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1304.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1305.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1307.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1308.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1401.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1507.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1707.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1710.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1712.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1714.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1715.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1716.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1717.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1720.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1721.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1724.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1801.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1802.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1805.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1806.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1810.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1812.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1814.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1815.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1816.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1819.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1820.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1821.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1822.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1823.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1824.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1825.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1826.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1827.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1828.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1829.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1834.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2000.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2002.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2007.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2008.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2009.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2010.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2011.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2012.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2013.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2100.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2101.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2119.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2153.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2200.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2207.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2208.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2211.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2213.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2214.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2215.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2216.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2219.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2225.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2226.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2227.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2229.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2231.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2234.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2235.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2237.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2241.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2242.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2243.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2244.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2245.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2246.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA3061.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA3075.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA3076.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA3077.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA3147.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5350.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5351.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5359.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5360.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5363.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5364.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5365.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5366.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5368.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5369.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5370.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5371.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5372.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5373.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5374.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5379.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5384.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5385.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5397.severity = suggestion
|
@ -1,115 +0,0 @@
|
|||||||
<RuleSet Name="Stylecop.ruleset" Description="Rules for Radarr" ToolsVersion="15.0">
|
|
||||||
<Rules AnalyzerId="StyleCop.CSharp.SpecialRules"
|
|
||||||
RuleNamespace="StyleCop.CSharp.SpecialRules">
|
|
||||||
<Rule Id="SA0001" Action="None" />
|
|
||||||
</Rules>
|
|
||||||
<Rules AnalyzerId="StyleCop.CSharp.SpacingRules"
|
|
||||||
RuleNamespace="StyleCop.CSharp.SpacingRules">
|
|
||||||
<Rule Id="SA1005" Action="None" />
|
|
||||||
<Rule Id="SA1025" Action="None" />
|
|
||||||
</Rules>
|
|
||||||
<Rules AnalyzerId="StyleCop.CSharp.ReadabilityRules"
|
|
||||||
RuleNamespace="StyleCop.CSharp.ReadabilityRules">
|
|
||||||
<Rule Id="SA1101" Action="None" />
|
|
||||||
<Rule Id="SA1116" Action="None" />
|
|
||||||
<Rule Id="SA1118" Action="None" />
|
|
||||||
<Rule Id="SA1122" Action="None" />
|
|
||||||
</Rules>
|
|
||||||
<Rules AnalyzerId="StyleCop.CSharp.OrderingRules"
|
|
||||||
RuleNamespace="StyleCop.CSharp.OrderingRules">
|
|
||||||
<Rule Id="SA1201" Action="Info" />
|
|
||||||
<Rule Id="SA1202" Action="Info" />
|
|
||||||
<Rule Id="SA1204" Action="Info" />
|
|
||||||
</Rules>
|
|
||||||
<Rules AnalyzerId="StyleCop.CSharp.NamingRules"
|
|
||||||
RuleNamespace="StyleCop.CSharp.NamingRules">
|
|
||||||
<Rule Id="SA1300" Action="None" />
|
|
||||||
<Rule Id="SA1301" Action="None" />
|
|
||||||
<Rule Id="SA1303" Action="None" />
|
|
||||||
<Rule Id="SA1304" Action="None" />
|
|
||||||
<Rule Id="SA1306" Action="None" />
|
|
||||||
<Rule Id="SA1309" Action="None" />
|
|
||||||
<Rule Id="SA1310" Action="None" />
|
|
||||||
</Rules>
|
|
||||||
<Rules AnalyzerId="StyleCop.CSharp.MaintainabilityRules"
|
|
||||||
RuleNamespace="StyleCop.CSharp.MaintainabilityRules">
|
|
||||||
<Rule Id="SA1400" Action="Warning" />
|
|
||||||
<Rule Id="SA1401" Action="None" />
|
|
||||||
<Rule Id="SA1402" Action="None" />
|
|
||||||
<Rule Id="SA1404" Action="Info" />
|
|
||||||
<Rule Id="SA1405" Action="Info" />
|
|
||||||
<Rule Id="SA1406" Action="Info" />
|
|
||||||
<Rule Id="SA1409" Action="Info" />
|
|
||||||
<Rule Id="SA1410" Action="Info" />
|
|
||||||
<Rule Id="SA1411" Action="Info" />
|
|
||||||
<Rule Id="SA1412" Action="None" />
|
|
||||||
<Rule Id="SA1413" Action="None" />
|
|
||||||
<Rule Id="SA1414" Action="None" />
|
|
||||||
</Rules>
|
|
||||||
<Rules AnalyzerId="StyleCop.CSharp.LayoutRules"
|
|
||||||
RuleNamespace="StyleCop.CSharp.LayoutRules">
|
|
||||||
<Rule Id="SA1516" Action="None" />
|
|
||||||
</Rules>
|
|
||||||
<Rules AnalyzerId="StyleCop.CSharp.DocumentationRules"
|
|
||||||
RuleNamespace="StyleCop.CSharp.DocumentationRules">
|
|
||||||
<Rule Id="SA1600" Action="None" />
|
|
||||||
<Rule Id="SA1601" Action="None" />
|
|
||||||
<Rule Id="SA1602" Action="None" />
|
|
||||||
<Rule Id="SA1603" Action="None" />
|
|
||||||
<Rule Id="SA1604" Action="None" />
|
|
||||||
<Rule Id="SA1605" Action="None" />
|
|
||||||
<Rule Id="SA1606" Action="None" />
|
|
||||||
<Rule Id="SA1607" Action="None" />
|
|
||||||
<Rule Id="SA1608" Action="None" />
|
|
||||||
<Rule Id="SA1609" Action="None" />
|
|
||||||
<Rule Id="SA1610" Action="None" />
|
|
||||||
<Rule Id="SA1611" Action="None" />
|
|
||||||
<Rule Id="SA1612" Action="None" />
|
|
||||||
<Rule Id="SA1613" Action="None" />
|
|
||||||
<Rule Id="SA1614" Action="None" />
|
|
||||||
<Rule Id="SA1615" Action="None" />
|
|
||||||
<Rule Id="SA1616" Action="None" />
|
|
||||||
<Rule Id="SA1617" Action="None" />
|
|
||||||
<Rule Id="SA1618" Action="None" />
|
|
||||||
<Rule Id="SA1619" Action="None" />
|
|
||||||
<Rule Id="SA1620" Action="None" />
|
|
||||||
<Rule Id="SA1621" Action="None" />
|
|
||||||
<Rule Id="SA1622" Action="None" />
|
|
||||||
<Rule Id="SA1623" Action="None" />
|
|
||||||
<Rule Id="SA1624" Action="None" />
|
|
||||||
<Rule Id="SA1625" Action="None" />
|
|
||||||
<Rule Id="SA1626" Action="None" />
|
|
||||||
<Rule Id="SA1627" Action="None" />
|
|
||||||
<Rule Id="SA1628" Action="None" />
|
|
||||||
<Rule Id="SA1629" Action="None" />
|
|
||||||
<Rule Id="SA1630" Action="None" />
|
|
||||||
<Rule Id="SA1631" Action="None" />
|
|
||||||
<Rule Id="SA1632" Action="None" />
|
|
||||||
<Rule Id="SA1633" Action="None" />
|
|
||||||
<Rule Id="SA1634" Action="None" />
|
|
||||||
<Rule Id="SA1635" Action="None" />
|
|
||||||
<Rule Id="SA1636" Action="None" />
|
|
||||||
<Rule Id="SA1637" Action="None" />
|
|
||||||
<Rule Id="SA1638" Action="None" />
|
|
||||||
<Rule Id="SA1639" Action="None" />
|
|
||||||
<Rule Id="SA1640" Action="None" />
|
|
||||||
<Rule Id="SA1641" Action="None" />
|
|
||||||
<Rule Id="SA1642" Action="None" />
|
|
||||||
<Rule Id="SA1643" Action="None" />
|
|
||||||
<Rule Id="SA1644" Action="None" />
|
|
||||||
<Rule Id="SA1645" Action="None" />
|
|
||||||
<Rule Id="SA1646" Action="None" />
|
|
||||||
<Rule Id="SA1647" Action="None" />
|
|
||||||
<Rule Id="SA1648" Action="None" />
|
|
||||||
<Rule Id="SA1649" Action="None" />
|
|
||||||
<Rule Id="SA1650" Action="None" />
|
|
||||||
<Rule Id="SA1651" Action="None" />
|
|
||||||
<Rule Id="SA1652" Action="None" />
|
|
||||||
</Rules>
|
|
||||||
<Rules AnalyzerId="StyleCop.CSharp.AlternativeRules"
|
|
||||||
RuleNamespace="StyleCop.CSharp.AlternativeRules">
|
|
||||||
<!-- Do not prefix local members with this -->
|
|
||||||
<Rule Id="SX1101" Action="Warning" />
|
|
||||||
<Rule Id="SX1309" Action="Warning" />
|
|
||||||
</Rules>
|
|
||||||
</RuleSet>
|
|
Loading…
Reference in new issue