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 73169b9 commit ac2cd03Copy full SHA for ac2cd03
CONTRIBUTING.md
@@ -22,6 +22,9 @@ Thank you for considering contributing to OpenCoder! This document outlines the
22
# Install dependencies
23
bun install
24
25
+# Run type checker
26
+bun run typecheck
27
+
28
# Run linter
29
bun run lint
30
@@ -80,9 +83,10 @@ Example: `feat: add cycle limit option to orchestrator`
80
83
## Pull Requests
81
84
82
85
1. Ensure all tests pass: `bun test`
-2. Ensure code is linted: `bun run lint`
-3. Write a clear PR description
-4. Reference any related issues
86
+2. Ensure types are correct: `bun run typecheck`
87
+3. Ensure code is linted: `bun run lint`
88
+4. Write a clear PR description
89
+5. Reference any related issues
90
91
## Reporting Issues
92
0 commit comments