-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the Issue #46 argument handler more flexible for future continge…
…ncies
- Loading branch information
1 parent
e06cbd0
commit 070fb87
Showing
12 changed files
with
126 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#if RUNNER | ||
namespace AltCover | ||
|
||
[<System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage>] // work around coverlet attribute bug | ||
module DotNetTest = | ||
#else | ||
[<System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage; RequireQualifiedAccess>] // work around coverlet attribute bug | ||
module AltCover_Fake.DotNet.Testing.DotNetTest | ||
#endif | ||
[<NoComparison; System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", | ||
"CA1034", | ||
Justification = "Idiomatic F#")>] | ||
|
||
type CLIArgs = | ||
| Force of bool | ||
with member self.ForceDelete = | ||
match self with | ||
| Force b -> b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,46 @@ | ||
<gendarme> | ||
<ruleset name="default"> | ||
<rules include="*" | ||
exclude="AvoidAssemblyVersionMismatchRule" | ||
from="Gendarme.Rules.BadPractice.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Concurrency.dll" /> | ||
<rules include="*" | ||
exclude="CheckParametersNullityInVisibleMethodsRule | EnsureLocalDisposalRule" | ||
from="Gendarme.Rules.Correctness.dll" /> | ||
<rules include="*" | ||
exclude="AvoidSmallNamespaceRule | PreferXmlAbstractionsRule" | ||
from="Gendarme.Rules.Design.dll" /> | ||
<rules include="*" | ||
from="Gendarme.Rules.Design.Generic.dll" /> | ||
<rules include="*" | ||
from="Gendarme.Rules.Design.Linq.dll" /> | ||
<rules include="*" | ||
<ruleset name="default"> | ||
<rules include="*" | ||
exclude="AvoidAssemblyVersionMismatchRule" | ||
from="Gendarme.Rules.BadPractice.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Concurrency.dll" /> | ||
<rules include="*" | ||
exclude="CheckParametersNullityInVisibleMethodsRule | EnsureLocalDisposalRule" | ||
from="Gendarme.Rules.Correctness.dll" /> | ||
<rules include="*" | ||
exclude="AvoidMultidimensionalIndexerRule | AvoidVisibleNestedTypesRule | AvoidSmallNamespaceRule | PreferXmlAbstractionsRule" | ||
from="Gendarme.Rules.Design.dll" /> | ||
<rules include="*" | ||
from="Gendarme.Rules.Design.Generic.dll" /> | ||
<rules include="*" | ||
from="Gendarme.Rules.Design.Linq.dll" /> | ||
<rules include="*" | ||
from="Gendarme.Rules.Exceptions.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Interoperability.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Interoperability.Com.dll" /> | ||
<rules include="*" | ||
exclude="UseCorrectCasingRule | ParameterNamesShouldMatchOverriddenMethodRule" | ||
from="Gendarme.Rules.Naming.dll" /> | ||
<rules include="*" | ||
exclude="AvoidReturningArraysOnPropertiesRule | AvoidUnneededFieldInitializationRule " | ||
from="Gendarme.Rules.Performance.dll" /> | ||
<rules include="*" | ||
from="Gendarme.Rules.Portability.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Security.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Security.Cas.dll" /> | ||
<rules include="*" | ||
exclude="MarkAllNonSerializableFieldsRule" | ||
from="Gendarme.Rules.Serialization.dll" /> | ||
<rules include="*" | ||
exclude="AvoidLargeClassesRule | AvoidCodeDuplicatedInSameClassRule | AvoidSwitchStatementsRule" | ||
from="Gendarme.Rules.Smells.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Ui.dll" /> | ||
<rules include="*" | ||
exclude="AvoidUnnecessarySpecializationRule | VariableNamesShouldNotMatchFieldNamesRule" | ||
from="Gendarme.Rules.Maintainability.dll" /> | ||
<rules include="*" | ||
from="Gendarme.Rules.Gendarme.dll" /> | ||
<!-- Assembly not in nugget --> | ||
<!-- rules include="*" from="Gendarme.Rules.Globalization.dll"/ --> | ||
</ruleset> | ||
<rules include="*" from="Gendarme.Rules.Interoperability.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Interoperability.Com.dll" /> | ||
<rules include="*" | ||
exclude="UseCorrectCasingRule | ParameterNamesShouldMatchOverriddenMethodRule" | ||
from="Gendarme.Rules.Naming.dll" /> | ||
<rules include="*" | ||
exclude="AvoidReturningArraysOnPropertiesRule | AvoidUnneededFieldInitializationRule " | ||
from="Gendarme.Rules.Performance.dll" /> | ||
<rules include="*" | ||
from="Gendarme.Rules.Portability.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Security.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Security.Cas.dll" /> | ||
<rules include="*" | ||
exclude="MarkAllNonSerializableFieldsRule" | ||
from="Gendarme.Rules.Serialization.dll" /> | ||
<rules include="*" | ||
exclude="AvoidLargeClassesRule | AvoidCodeDuplicatedInSameClassRule | AvoidSwitchStatementsRule" | ||
from="Gendarme.Rules.Smells.dll" /> | ||
<rules include="*" from="Gendarme.Rules.Ui.dll" /> | ||
<rules include="*" | ||
exclude="AvoidUnnecessarySpecializationRule | VariableNamesShouldNotMatchFieldNamesRule" | ||
from="Gendarme.Rules.Maintainability.dll" /> | ||
<rules include="*" | ||
from="Gendarme.Rules.Gendarme.dll" /> | ||
<!-- Assembly not in nugget --> | ||
<!-- rules include="*" from="Gendarme.Rules.Globalization.dll"/ --> | ||
</ruleset> | ||
</gendarme> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.