From 23f909d33d5ee58cbf093191518939fbf72c6b70 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sun, 12 Dec 2021 19:15:48 +0100 Subject: build: add tools to enforce some code/commit rules --- .husky/commit-msg | 4 ++++ .husky/pre-commit | 4 ++++ 2 files changed, 8 insertions(+) create mode 100755 .husky/commit-msg create mode 100755 .husky/pre-commit (limited to '.husky') diff --git a/.husky/commit-msg b/.husky/commit-msg new file mode 100755 index 0000000..e8511ea --- /dev/null +++ b/.husky/commit-msg @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +npx --no-install commitlint --edit $1 diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 0000000..d2ae35e --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +yarn lint-staged -- cgit v1.2.3