@html-validate/commitlint-config 4.0.0 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commitlint.js +468 -726
- package/dist/config.js +1 -5
- package/dist/formatter.js +5 -1
- package/package.json +1 -1
package/dist/config.js
CHANGED
|
@@ -31,11 +31,7 @@ var lib_default = {
|
|
|
31
31
|
"body-leading-blank": [RuleConfigSeverity.Warning, "always"],
|
|
32
32
|
"body-max-line-length": [RuleConfigSeverity.Error, "always", 100],
|
|
33
33
|
"footer-leading-blank": [RuleConfigSeverity.Warning, "always"],
|
|
34
|
-
"footer-max-line-length": [
|
|
35
|
-
RuleConfigSeverity.Error,
|
|
36
|
-
"always",
|
|
37
|
-
100
|
|
38
|
-
],
|
|
34
|
+
"footer-max-line-length": [RuleConfigSeverity.Error, "always", 100],
|
|
39
35
|
"header-max-length": [RuleConfigSeverity.Error, "always", 100],
|
|
40
36
|
"header-trim": [RuleConfigSeverity.Error, "always"],
|
|
41
37
|
"subject-case": [
|
package/dist/formatter.js
CHANGED
|
@@ -107,7 +107,11 @@ var require_picocolors = __commonJS({
|
|
|
107
107
|
// node_modules/@commitlint/format/lib/format.js
|
|
108
108
|
var import_picocolors = __toESM(require_picocolors(), 1);
|
|
109
109
|
var DEFAULT_SIGNS = [" ", "\u26A0", "\u2716"];
|
|
110
|
-
var DEFAULT_COLORS = [
|
|
110
|
+
var DEFAULT_COLORS = [
|
|
111
|
+
"white",
|
|
112
|
+
"yellow",
|
|
113
|
+
"red"
|
|
114
|
+
];
|
|
111
115
|
function format(report = {}, options = {}) {
|
|
112
116
|
const { results = [] } = report;
|
|
113
117
|
const fi = (result) => formatInput(result, options);
|