From 324e42c7e2f1a23b28b7f0ce1849ad9e7cec47a2 Mon Sep 17 00:00:00 2001 From: Yumin Gui Date: Fri, 18 Jul 2025 00:24:57 -0700 Subject: [PATCH] fix: tailwindcss v4 build --- .commitlintrc.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .commitlintrc.json diff --git a/.commitlintrc.json b/.commitlintrc.json new file mode 100644 index 0000000..99ffd9a --- /dev/null +++ b/.commitlintrc.json @@ -0,0 +1,22 @@ +{ + "extends": ["@commitlint/config-conventional"], + "rules": { + "type-enum": [ + 2, + "always", + [ + "feat", + "fix", + "docs", + "chore", + "style", + "refactor", + "ci", + "test", + "perf", + "revert", + "vercel" + ] + ] + } +}