You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hugr-llvm/DEVELOPMENT.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ We use `rustfmt` to enforce a consistent coding style. The CI will fail if the c
46
46
To format your code, run:
47
47
48
48
```bash
49
-
cargo format
49
+
cargo fmt
50
50
```
51
51
52
52
We also use various linters to catch common mistakes and enforce best practices. To run these, see [our CI config](./.github/workflows/ci-rs.yml). TODO Provide a better way, contributions welcome.
@@ -66,7 +66,7 @@ cargo install cargo-llvm-cov
66
66
Then run the tests, see [our CI config](/.github/workflows/ci-rs.yml).
67
67
68
68
```bash
69
-
just coverage
69
+
cargo llvm-cov --lcov --output-path lcov.info
70
70
```
71
71
72
72
This will generate a coverage file that can be opened with your favourite coverage viewer. In VSCode, you can use
0 commit comments