@pega/commitlint-config
Advanced tools
Comparing version 0.7.2 to 0.8.0
15
index.js
@@ -5,3 +5,4 @@ 'use strict'; | ||
const issuePrefixes = ['EPIC-', 'US-', 'BUG-', 'ISSUE-', 'TASK-']; | ||
const agileStudioPrefixes = ['EPIC-', 'US-', 'BUG-', 'ISSUE-', 'TASK-']; | ||
const openAgilePrefixes = ['BUG-']; | ||
@@ -16,5 +17,5 @@ const /** @type {import('@commitlint/types').UserConfig} */ Configuration = { | ||
referenceActions: ['AgileStudio:'], | ||
issuePrefixes, | ||
issuePrefixes: [...agileStudioPrefixes, ...openAgilePrefixes], | ||
issuePrefixesCaseSensitive: true, | ||
noteKeywords: ['BREAKING CHANGE'], | ||
noteKeywords: ['BREAKING CHANGE', 'AgileStudio', 'OpenAgile'], | ||
// cSpell:disable | ||
@@ -52,8 +53,10 @@ mergePattern: /^[Mm]erge/, | ||
], | ||
'@pega/reference-order': [2, 'always', { prefixes: issuePrefixes }], | ||
'@pega/reference-order': [2, 'always', { prefixes: agileStudioPrefixes }], | ||
'@pega/spellcheck': [2, 'always'], | ||
'@pega/agile-studio': [2, 'always', { prefixes: agileStudioPrefixes }], | ||
'@pega/open-agile': [2, 'always', { prefixes: openAgilePrefixes }], | ||
'@pega/spellcheck': [2, 'always', { ignorePrefixes: ['OpenAgile:'] }], | ||
'@pega/merge-commit': [2, 'never'], | ||
'@pega/revert-commit': [2, 'never'] | ||
@@ -60,0 +63,0 @@ }, |
{ | ||
"name": "@pega/commitlint-config", | ||
"version": "0.7.2", | ||
"version": "0.8.0", | ||
"description": "Pega front-end commitlint config.", | ||
@@ -16,9 +16,9 @@ "keywords": [ | ||
"devDependencies": { | ||
"@pega/commitlint-plugin": "0.7.2", | ||
"@pega/commitlint-plugin": "0.8.0", | ||
"commitlint": "^11.0.0" | ||
}, | ||
"peerDependencies": { | ||
"@pega/commitlint-plugin": "0.7.2", | ||
"@pega/commitlint-plugin": "0.8.0", | ||
"commitlint": ">=11.0.0" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14742
50