Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ some toolchains when clippy isn't installed. If you have problems try
it with `rustup component add --toolchain nightly clippy`.

You can change the parameters `rustic-default-clippy-arguments` that
default to "--benches --tests --all-features".
default to "--all-targets --all-features".

### auto-fixing before compilation

Expand Down
4 changes: 2 additions & 2 deletions rustic-cargo.el
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ instead of applying the default arguments from `rustic-default-test-arguments'."
:type 'boolean
:group 'rustic-cargo)

(defcustom rustic-default-test-arguments "--benches --tests --all-features"
(defcustom rustic-default-test-arguments "--all-targets --all-features"
"Default arguments when running `cargo test'."
:type 'string
:group 'rustic-cargo)
Expand All @@ -121,7 +121,7 @@ instead of applying the default arguments from `rustic-default-test-arguments'."
:type '(list string)
:group 'rustic-cargo)

(defcustom rustic-cargo-check-arguments "--benches --tests --all-features"
(defcustom rustic-cargo-check-arguments "--all-targets --all-features"
"Default arguments when running `cargo check'."
:type 'string
:group 'rustic-cargo)
Expand Down
2 changes: 1 addition & 1 deletion rustic-clippy.el
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
:type 'string
:group 'rustic-cargo)

(defcustom rustic-default-clippy-arguments "--benches --tests --all-features"
(defcustom rustic-default-clippy-arguments "--all-targets --all-features"
"Default arguments when running `clippy'."
:type 'string
:group 'rustic-cargo)
Expand Down