From 41767ed7241e0493b72c49f37611ecf6fda8253a Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 24 Sep 2024 19:23:24 +0200 Subject: [PATCH] build(commitizen): added config --- .czrc | 3 +++ commitlint.config.mjs | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 .czrc create mode 100644 commitlint.config.mjs diff --git a/.czrc b/.czrc new file mode 100644 index 0000000..11f0406 --- /dev/null +++ b/.czrc @@ -0,0 +1,3 @@ +{ + "path": "@commitlint/cz-commitlint" +} diff --git a/commitlint.config.mjs b/commitlint.config.mjs new file mode 100644 index 0000000..b781f6a --- /dev/null +++ b/commitlint.config.mjs @@ -0,0 +1,3 @@ +export default { + extends: ["@commitlint/config-conventional"] +};