Skip to content

Commit bbd69e7

Browse files
⚙️ [Maintenance]: Update super-linter to v8.4.0 (#109)
## Description Updates super-linter from v8.3.2 to v8.4.0. ## Changes - Updated `super-linter/super-linter` to v8.4.0 (`12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e`) - Added `.codespellrc` configuration file for codespell linter ## References - [super-linter v8.4.0 release](https://github.com/super-linter/super-linter/releases/tag/v8.4.0)
1 parent 77d53e3 commit bbd69e7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/linters/.codespellrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[codespell]
2+
skip = ./.github/linters

.github/workflows/Linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
persist-credentials: false
2626

2727
- name: Lint code base
28-
uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2
28+
uses: super-linter/super-linter@12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e # v8.4.0
2929
env:
3030
GITHUB_TOKEN: ${{ github.token }}
3131
VALIDATE_BIOME_FORMAT: false

src/tests/SourceCode/PSModule/PSModule.Tests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Describe 'PSModule - SourceCode tests' {
163163
$issues -join [Environment]::NewLine |
164164
Should -BeNullOrEmpty -Because "the script should use '`$null = ...' instead of '... | Out-Null'"
165165
}
166-
It 'Should not use ternary operations for compatability reasons (ID: NoTernary)' -Skip {
166+
It 'Should not use ternary operations for compatibility reasons (ID: NoTernary)' -Skip {
167167
$issues = @('')
168168
$scriptFiles | ForEach-Object {
169169
$filePath = $_.FullName
@@ -179,7 +179,7 @@ Describe 'PSModule - SourceCode tests' {
179179
}
180180
}
181181
$issues -join [Environment]::NewLine |
182-
Should -BeNullOrEmpty -Because 'the script should not use ternary operations for compatability with PS 5.1 and below'
182+
Should -BeNullOrEmpty -Because 'the script should not use ternary operations for compatibility with PS 5.1 and below'
183183
}
184184
It 'all powershell keywords are lowercase (ID: LowercaseKeywords)' {
185185
$issues = @('')

0 commit comments

Comments
 (0)