chore(commitlint): add `{body,footer,header}-max(-line)-length` [skip ci]
authorDafydd Jones <dafydd@techneg.it>
Wed, 7 Oct 2020 08:02:49 +0000 (09:02 +0100)
committerImran Iqbal <iqbalmy@hotmail.com>
Wed, 7 Oct 2020 08:02:49 +0000 (09:02 +0100)
* Automated using https://github.com/myii/ssf-formula/pull/265

commitlint.config.js

index 2f9d1aa0e6ceb435f32e10cfeceff1323f3a42c9..4eb37f40bd675f89c94c5c9e4cf1d027debc8ad8 100644 (file)
@@ -1,3 +1,8 @@
 module.exports = {
     extends: ['@commitlint/config-conventional'],
+    rules: {
+        'body-max-line-length': [2, 'always', 120],
+        'footer-max-line-length': [2, 'always', 120],
+        'header-max-length': [2, 'always', 72],
+    },
 };