Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
TehMuffinMoo committed Jul 20, 2024
1 parent 43916ce commit 2f3c6d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/Analyze Code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Analyze Code with PSScriptAnalyzer
shell: pwsh
run : |
$ExcludedRules = @('PSAvoidUsingWriteHost')
$ExcludedRules = @('PSAvoidUsingWriteHost','PSUseSingularNouns')
$Findings = Get-ChildItem -Path Modules/ibPS/Functions/*.ps1 -Recurse -File | %{ Invoke-ScriptAnalyzer $_ -ExcludeRule $ExcludedRules}
$Findings | Select-Object ScriptName,Severity,Line,Column,RuleName,Message | ConvertTo-Csv | Set-Content ./docs/analysis.csv -Force
Expand Down
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Various minor code improvements & fixes
- Refactored all code to remove unneccessary whitespace and unused variables
- Add auto-complete to `-Source` parameter on `Start-B1DossierLookup`
- Minor bugfixes for new `nios_metadata` field which has been added to the API Schema for DNS Zones & Records

### Breaking Changes
Support for `ShouldProcess` is being added for all state-changing functions, which enables three new parameters. `-Confirm`, `-WhatIf` & `-Force`.
Expand Down

0 comments on commit 2f3c6d2

Please sign in to comment.