fix: switch to bunx

This commit is contained in:
Dominik Koch 2025-07-24 14:05:04 +02:00
parent bb0a8bf44b
commit f601185013
2 changed files with 22 additions and 22 deletions

View File

@ -1 +1 @@
npx ultracite format
bunx ultracite format

View File

@ -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",
],
],
},
};