Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LaurentDardenne/ParameterSetRules
This module contains script analyzer rules to control the param block of a scriptblock.
https://github.com/LaurentDardenne/ParameterSetRules
Last synced: 9 days ago
JSON representation
This module contains script analyzer rules to control the param block of a scriptblock.
- Host: GitHub
- URL: https://github.com/LaurentDardenne/ParameterSetRules
- Owner: LaurentDardenne
- Created: 2017-05-09T12:53:50.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-06T17:57:51.000Z (over 6 years ago)
- Last Synced: 2024-11-12T14:33:31.747Z (about 1 month ago)
- Language: PowerShell
- Size: 108 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- jimsghstars - LaurentDardenne/ParameterSetRules - This module contains script analyzer rules to control the param block of a scriptblock. (PowerShell)
README
[![Build status](https://ci.appveyor.com/api/projects/status/wn4n7ml61ygmoume?svg=true)](https://ci.appveyor.com/project/LaurentDardenne/parametersetrules)
# ParameterSetRules
This module contains script analyzer rules to control the param block of a scriptblock.**Documentation**
[Parameter set rules](https://github.com/LaurentDardenne/ParameterSetRules/tree/master/RuleDocumentation)
How to test parameterset of a [binary cmdlet](https://github.com/LaurentDardenne/ParameterSetRules/blob/master/Docs/en-US/Example.md).
**PowerShell 5 Installation, (development version)**
From PowerShell run:
```Powershell
$PSGalleryPublishUri = 'https://www.myget.org/F/ottomatt/api/v2/package'
$PSGallerySourceUri = 'https://www.myget.org/F/ottomatt/api/v2'Register-PSRepository -Name OttoMatt -SourceLocation $PSGallerySourceUri -PublishLocation $PSGalleryPublishUri #-InstallationPolicy Trusted
Install-Module ParameterSetRules -Repository OttoMatt -Verbose -Force
```