зеркало из https://github.com/microsoft/testfx.git
21 строка
840 B
XML
21 строка
840 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RuleSet Name="Rules for testfx tests" Description="Code analysis rules for testFx test projects." ToolsVersion="14.0">
|
|
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
|
|
<!-- XML documentation checks are not required for test projects -->
|
|
<Rule Id="SA1652" Action="None" />
|
|
|
|
<!-- Allow use of regions -->
|
|
<Rule Id="SA1124" Action="None" />
|
|
|
|
<!-- Allow use of multiple types defined in a single file -->
|
|
<Rule Id="SA1402" Action="None" />
|
|
|
|
<!-- Allow interfaces to be defined after types to accommodate dummy implementations in the same test file. -->
|
|
<Rule Id="SA1201" Action="None" />
|
|
<Rule Id="SA1649" Action="None" />
|
|
|
|
<!-- Enumeration items should be documented -->
|
|
<Rule Id="SA1602" Action="None" />
|
|
</Rules>
|
|
</RuleSet>
|