summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Kay <chris.kay@arm.com>2021-04-27 16:09:20 +0100
committerChris Kay <chris.kay@arm.com>2021-04-27 16:12:10 +0100
commit8a73b563e5cde94010271faa308a103446b56798 (patch)
tree750954e97075516027bbfb4aa995debc228dc2a8
parentd3555651658ad42394ed97536da3dd7796ad349e (diff)
downloadarm-trusted-firmware-8a73b563e5cde94010271faa308a103446b56798.tar.gz
revert(commitlint): disable `signed-off-by` rule
The `signed-off-by` rule does not correctly detect the `Signed-off-by:` trailer if it's not the last trailer. Therefore, this rule has been disabled until we can resolve this in the commitlint upstream. Change-Id: I50ea29067528f3c1c25beeea5eb25134b25b2af2 Signed-off-by: Chris Kay <chris.kay@arm.com>
-rw-r--r--commitlint.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commitlint.config.js b/commitlint.config.js
index b7c1e5aa1..94cad8f2b 100644
--- a/commitlint.config.js
+++ b/commitlint.config.js
@@ -9,6 +9,6 @@ module.exports = {
rules: {
"header-max-length": [1, "always", config.maxHeaderWidth], /* Warning */
"body-max-line-length": [1, "always", config.maxLineWidth], /* Warning */
- "signed-off-by": [2, "always", "Signed-off-by:"] /* Error */
+ "signed-off-by": [0, "always", "Signed-off-by:"] /* Disabled - buggy */
}
};