@appello/commitlint-config
Advanced tools
+11
-0
@@ -6,2 +6,13 @@ # Change Log | ||
| ## [6.0.1](https://bitbucket.org/appello/frontend-tools/compare/@appello/commitlint-config@6.0.0...@appello/commitlint-config@6.0.1) (2026-04-30) | ||
| ### Bug Fixes | ||
| * 🐛 Small fix upper-case in commitlint ([599b9e7](https://bitbucket.org/appello/frontend-tools/commits/599b9e7a246a4891a4df499e2f01d5f649bf45a7)) | ||
| # [6.0.0](https://bitbucket.org/appello/frontend-tools/compare/@appello/commitlint-config@5.0.0...@appello/commitlint-config@6.0.0) (2026-04-30) | ||
@@ -8,0 +19,0 @@ |
+1
-1
@@ -10,3 +10,3 @@ import { RuleConfigSeverity } from "@commitlint/types"; | ||
| 'type-empty': [RuleConfigSeverity.Error, "never"]; | ||
| 'scope-case': [RuleConfigSeverity.Error, "always", "kebab-case"]; | ||
| 'scope-case': [RuleConfigSeverity.Error, "always", "upper-case"]; | ||
| 'scope-empty': [RuleConfigSeverity.Error, "never"]; | ||
@@ -13,0 +13,0 @@ 'subject-case': [RuleConfigSeverity.Error, "always", "sentence-case"[]]; |
+1
-1
@@ -33,3 +33,3 @@ import { RuleConfigSeverity } from "@commitlint/types"; | ||
| "always", | ||
| "kebab-case" | ||
| "upper-case" | ||
| ], | ||
@@ -36,0 +36,0 @@ "scope-empty": [RuleConfigSeverity.Error, "never"], |
+2
-2
| { | ||
| "name": "@appello/commitlint-config", | ||
| "version": "6.0.0", | ||
| "version": "6.0.1", | ||
| "author": "Appello Software", | ||
@@ -43,3 +43,3 @@ "description": "Appello's commitlint config", | ||
| }, | ||
| "gitHead": "59868f26bb2eca43ae974d0a17697038182881c6" | ||
| "gitHead": "de7b88e014d645ed983a19c1eb84bdced3a536ba" | ||
| } |
+1
-1
@@ -13,3 +13,3 @@ import { RuleConfigSeverity, type UserConfig } from '@commitlint/types'; | ||
| 'type-empty': [RuleConfigSeverity.Error, 'never'], | ||
| 'scope-case': [RuleConfigSeverity.Error, 'always', 'kebab-case'], | ||
| 'scope-case': [RuleConfigSeverity.Error, 'always', 'upper-case'], | ||
| 'scope-empty': [RuleConfigSeverity.Error, 'never'], | ||
@@ -16,0 +16,0 @@ 'subject-case': [RuleConfigSeverity.Error, 'always', ['sentence-case']], |
12545
2.59%