From d97bade107bae2e9e98b74bbc3198fd7ef5234cc Mon Sep 17 00:00:00 2001 From: Chris Kay Date: Wed, 9 Dec 2020 16:52:03 +0000 Subject: build(hooks): add commitlint hook This change adds a configuration for commitlint - a tool designed to enforce a particular commit message style - and run it as part of Git's commit-msg hook. This validates commits immediately after the editor has been exited, and the configuration is derived from the configuration we provide to Commitizen. While the configuration provided suggests a maximum header and body length, neither of these are hard errors. This is to accommodate the occasional commit where it may be difficult or impossible to comply with the length requirements (for example, with a particularly long scope, or a long URL in the message body). Change-Id: Ib5e90472fd1f1da9c2bff47703c9682232ee5679 Signed-off-by: Chris Kay --- package.json | 2 ++ 1 file changed, 2 insertions(+) (limited to 'package.json') diff --git a/package.json b/package.json index acd248a1b..04f5ffbcf 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,8 @@ "postinstall": "husky install" }, "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", "commitizen": "^4.2.2", "cz-conventional-changelog": "^3.3.0", "husky": "^5.0.4" -- cgit v1.2.1