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 9dc5739 commit 28eb00cCopy full SHA for 28eb00c
README.md
@@ -156,12 +156,26 @@ pnpm install --ignore-scripts
156
### 3. Start Local Development
157
To compile and view changes made to `q chat`:
158
```shell
159
-alias run_q_chat='cargo run --bin q_cli -- chat'
160
-run_q_chat
+cargo run --bin q_cli -- chat
161
```
162
163
> If you are working on other q commands, just replace `chat` with the command name
164
+To run tests for the Q CLI crate:
165
+```shell
166
+cargo test -p q_cli
167
+```
168
+
169
+To format Rust files:
170
171
+cargo +nightly fmt
172
173
174
+To run clippy:
175
176
+cargo clippy --locked --workspace --color always -- -D warnings
177
178
179
180
181
### 💡 Quick Tip for Onboarding
0 commit comments