Skip to content

Commit 1471524

Browse files
committed
✨feat(docs): update Copilot instructions and refine PowerShell-specific types and scopes
1 parent 8fb34f6 commit 1471524

File tree

3 files changed

+20
-38
lines changed

3 files changed

+20
-38
lines changed

.codacy/codacy.yaml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/copilot-instructions.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -31,30 +31,30 @@ Generate commit messages for PowerShell projects using this format:
3131
Follow the GitMoji specifications at <https://conventional-emoji-commits.site/full-specification/specification> for
3232
commit messages. Tailor commit messages for PowerShell development, using the provided types and scopes.
3333

34-
### PowerShell-Specific Types:
35-
- **feat**: ✨ New cmdlet, function, or module feature
36-
- **fix**: 🐛 Bug fix in PowerShell code
37-
- **docs**: 📚 Help documentation, comment-based help
38-
- **style**: 🎨 Code formatting, OTBS compliance, Pascal case fixes
39-
- **refactor**: ♻️ Code restructuring, approved verb compliance
40-
- **test**: ✅ Pester tests, unit tests
41-
- **build**: 🛠️ Module manifest, build scripts
42-
- **ci**: 🤖 Azure DevOps, GitHub Actions for PowerShell
43-
- **chore**: 🧹 Module organization, file cleanup
44-
- **perf**: ⚡ Performance improvements in cmdlets or functions
45-
- **revert**: ⏪ Reverting changes in PowerShell scripts or modules
46-
- **packaging**: 📦 Packaging changes, module version updates
47-
- **security**: 🔒 Security-related changes, input validation, authentication
48-
49-
### PowerShell Scopes:
34+
## PowerShell-Specific Types:
35+
- feat: ✨ New cmdlet, function, or module feature
36+
- fix: 🐛 Bug fix in PowerShell code
37+
- docs: 📚 Help documentation, comment-based help
38+
- style: 🎨 Code formatting, OTBS compliance, Pascal case fixes
39+
- refactor: ♻️ Code restructuring, approved verb compliance
40+
- test: ✅ Pester tests, unit tests
41+
- build: 🛠️ Module manifest, build scripts
42+
- ci: 🤖 Azure DevOps, GitHub Actions for PowerShell
43+
- chore: 🧹 Module organization, file cleanup
44+
- perf: ⚡ Performance improvements in cmdlets or functions
45+
- revert: ⏪ Reverting changes in PowerShell scripts or modules
46+
- packaging: 📦 Packaging changes, module version updates
47+
- security: 🔒 Security-related changes, input validation, authentication
48+
49+
## PowerShell Scopes:
5050
- module: Module-level changes
5151
- cmdlet: Specific cmdlet modifications
5252
- function: Function updates
5353
- help: Documentation changes
5454
- manifest: Module manifest updates
5555
- tests: Test-related changes
5656

57-
### Examples:
57+
## Examples:
5858
✨feat(cmdlet): add Get-UserProfile with parameter validation
5959
🐛fix(function): resolve Invoke-ApiCall error handling
6060
📚docs(help): update comment-based help for Set-Configuration

.gitignore

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,6 @@ Temporary Items
4949
# iCloud generated files
5050
*.icloud
5151

52-
### PowerShell ###
53-
# Exclude packaged modules
54-
*.zip
55-
56-
# Exclude .NET assemblies from source
57-
*.dll
58-
5952
### VisualStudioCode ###
6053
.vscode/*
6154
!.vscode/settings.json
@@ -67,9 +60,6 @@ Temporary Items
6760
# Local History for Visual Studio Code
6861
.history/
6962

70-
# Built Visual Studio Code Extensions
71-
*.vsix
72-
7363
### VisualStudioCode Patch ###
7464
# Ignore all local history of files
7565
.history
@@ -92,7 +82,6 @@ ehthumbs_vista.db
9282
$RECYCLE.BIN/
9383

9484
# Windows Installer files
95-
*.cab
9685
*.msi
9786
*.msix
9887
*.msm
@@ -101,4 +90,7 @@ $RECYCLE.BIN/
10190
# Windows shortcuts
10291
*.lnk
10392

93+
# Code Analysis Tools
94+
.codacy/*
95+
10496
# End of https://www.toptal.com/developers/gitignore/api/linux,macos,windows,powershell,visualstudiocode

0 commit comments

Comments
 (0)