mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
disable CA1707 warning in unit test projects per Roy Osherove's naming convention
https://stackoverflow.com/a/1594049/2343739
This commit is contained in:
parent
670e3bcb15
commit
250b06df30
3 changed files with 4 additions and 1 deletions
|
|
@ -91,6 +91,7 @@
|
|||
<Rule Id="CA1509" Action="None" />
|
||||
<!-- Invalid entry in code metrics rule specification file -->
|
||||
<Rule Id="CA1707" Action="Warning" />
|
||||
<!-- https://stackoverflow.com/a/1594049/2343739 -->
|
||||
<!-- Identifiers should not contain underscores -->
|
||||
<Rule Id="CA1708" Action="None" />
|
||||
<!-- Identifiers should differ by more than case -->
|
||||
|
|
|
|||
|
|
@ -90,6 +90,7 @@
|
|||
<Rule Id="CA1509" Action="None" />
|
||||
<!-- Invalid entry in code metrics rule specification file -->
|
||||
<Rule Id="CA1707" Action="Warning" />
|
||||
<!-- https://stackoverflow.com/a/1594049/2343739 -->
|
||||
<!-- Identifiers should not contain underscores -->
|
||||
<Rule Id="CA1708" Action="None" />
|
||||
<!-- Identifiers should differ by more than case -->
|
||||
|
|
|
|||
|
|
@ -89,7 +89,8 @@
|
|||
<!-- Avoid dead conditional code -->
|
||||
<Rule Id="CA1509" Action="None" />
|
||||
<!-- Invalid entry in code metrics rule specification file -->
|
||||
<Rule Id="CA1707" Action="Warning" />
|
||||
<Rule Id="CA1707" Action="None" />
|
||||
<!-- https://stackoverflow.com/a/1594049/2343739 -->
|
||||
<!-- Identifiers should not contain underscores -->
|
||||
<Rule Id="CA1708" Action="None" />
|
||||
<!-- Identifiers should differ by more than case -->
|
||||
|
|
|
|||
Loading…
Reference in a new issue