@@ -31,30 +31,30 @@ Generate commit messages for PowerShell projects using this format:
3131Follow the GitMoji specifications at < https://conventional-emoji-commits.site/full-specification/specification > for
3232commit 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
0 commit comments