We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f65205b commit 1e83ddfCopy full SHA for 1e83ddf
docs/guides/local-setup.md
@@ -98,6 +98,19 @@ npm pkg set scripts.commitlint="commitlint --edit"
98
echo "pnpm commitlint \${1}" > .husky/commit-msg
99
```
100
101
+== bun
102
+
103
+```sh
104
+bun add --dev husky
105
106
+bunx husky install
107
108
+# Add commit message linting to commit-msg hook
109
+echo "bunx commitlint --edit \$1" > .husky/commit-msg
110
+# Windows users should use ` to escape dollar signs
111
+echo "bunx commitlint --edit `$1" > .husky/commit-msg
112
+```
113
114
== deno
115
116
```sh
0 commit comments