Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
docs: Replace deprecated `--all` flag with `--workspace`
Sebastian Martinez committed 2 years ago
commit 1241bbb4e89bf3d559c139aff87f8bc981bc055b
parent 3366535c9d8b2ed123bd50d15468aa41d02bd9fc
1 file changed +3 -3
modified CONTRIBUTING.md
@@ -11,7 +11,7 @@ simple guidelines.

Always check your code with the linter (`clippy`), by running:

-
    $ cargo clippy --all --tests
+
    $ cargo clippy --workspace --tests

And make sure your code is formatted with, using:

@@ -23,14 +23,14 @@ Finally, ensure there is no trailing whitespace anywhere.

Make sure all tests are passing with:

-
    $ cargo test --all
+
    $ cargo test --workspace

## Checking the docs

If you make documentation changes, you may want to check whether there are any
warnings or errors:

-
    $ cargo doc --all --all-features
+
    $ cargo doc --workspace --all-features

## Code style