Skip to content

Commit b5af10d

Browse files
🩹 [Patch]: Change capitalization on files, correcting AST to Ast (#20)
## Description This pull request corrects filename capitalization from `AST` to `Ast` and updates the ignore patterns for the linter configuration. Changes to linter configuration: * [`.github/linters/.jscpd.json`](diffhunk://#diff-557094e283c00b23265c1c75872f41c6b1a524a00f0d99dd68ebd22cb63bfdd6L8-R8): Simplified the ignore patterns by replacing specific file paths with a more general pattern (`**/src/**`). ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent b5e77ed commit b5af10d

9 files changed

Lines changed: 1 addition & 3 deletions

File tree

.github/linters/.jscpd.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
],
66
"ignore": [
77
"**/tests/**",
8-
"**/src/functions/public/Functions/**",
9-
"**/src/functions/public/Core/Get-ASTCommand.ps1",
10-
"**/src/functions/public/Core/Get-ASTFunction.ps1"
8+
"**/src/**"
119
],
1210
"absolute": true
1311
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/functions/public/Functions/Get-ASTFunctionAlias.ps1 renamed to src/functions/public/Functions/Get-AstFunctionAlias.ps1

File renamed without changes.

src/functions/public/Functions/Get-ASTFunctionName.ps1 renamed to src/functions/public/Functions/Get-AstFunctionName.ps1

File renamed without changes.

src/functions/public/Functions/Get-ASTFunctionType.ps1 renamed to src/functions/public/Functions/Get-AstFunctionType.ps1

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)