We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bda93d commit c161ef3Copy full SHA for c161ef3
docs/guides/getting-started.md
@@ -22,6 +22,10 @@ npm install --save-dev @commitlint/config-conventional @commitlint/cli
22
pnpm add --save-dev @commitlint/{cli,config-conventional}
23
```
24
25
+```sh [deno]
26
+deno add --dev npm:@commitlint/cli npm:@commitlint/config-conventional
27
+```
28
+
29
:::
30
31
## Configuration
docs/guides/local-setup.md
@@ -83,6 +83,17 @@ npm pkg set scripts.commitlint="commitlint --edit"
83
echo "pnpm commitlint \${1}" > .husky/commit-msg
84
85
86
+== deno
87
88
+```sh
89
+deno add --dev husky
90
91
+deno task --eval husky init
92
93
+# Add commit message linting to commit-msg hook
94
+echo "deno task --eval commitlint --edit \$1" > .husky/commit-msg
95
96
97
98
99
---
0 commit comments