testfx/eng/stylecop.test.ruleset

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 строка
840 B
Plaintext
Исходник Обычный вид История

<?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" />
2022-04-26 11:18:00 +03:00
<!-- 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" />
2023-01-03 23:13:17 +03:00
<!-- Enumeration items should be documented -->
<Rule Id="SA1602" Action="None" />
</Rules>
2023-01-03 23:13:17 +03:00
</RuleSet>