Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lint.ps1] Ignore PSAvoidUsingPositionalParameters
I do not understand why this linter has started complaining now, as we use positional parameters in many functions: ``` packages\common.vm\tools\vm.common\vm.common.psm1 1 rule violation found. Severity distribution: Error = 0, Warning = 0, Information = 1 RuleName Severity ScriptName Line Message -------- -------- ---------- ---- ------- PSAvoidUsingPositionalParameters Information vm.common. 393 Cmdlet 'VM-Install-From-Zip' has positional psm1 parameter. Please use named parameters instead of positional parameters when calling a command. ``` Exclude this violation as it is of `Information` severity and we would need to make a lot of changes to fix it.
- Loading branch information