From f6011850131305437a9596fcc2b5843e794e9229 Mon Sep 17 00:00:00 2001 From: Dominik Koch Date: Thu, 24 Jul 2025 14:05:04 +0200 Subject: [PATCH] fix: switch to bunx --- .husky/pre-commit | 2 +- commitlint.config.js | 42 +++++++++++++++++++++--------------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index 5cebdbce..50517e71 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1 +1 @@ -npx ultracite format \ No newline at end of file +bunx ultracite format \ No newline at end of file diff --git a/commitlint.config.js b/commitlint.config.js index 6b9260eb..3c5f4a8a 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,23 +1,23 @@ export default { - extends: ["@commitlint/config-conventional"], - rules: { - "type-enum": [ - 2, - "always", - [ - "build", - "chore", - "ci", - "docs", - "feat", - "fix", - "perf", - "refactor", - "revert", - "style", - "test", - "deps", - ], - ], - }, + extends: ["@commitlint/config-conventional"], + rules: { + "type-enum": [ + 2, + "always", + [ + "build", + "chore", + "ci", + "docs", + "feat", + "fix", + "perf", + "refactor", + "revert", + "style", + "test", + "deps", + ], + ], + }, };