
* Tuneable Stage, Scheduler, and Mutators * rename * fix build * get rid of prelude * fmt * Reworked tunable, fixed stuff, add testcase * clippy * further fixes * fix typo, fmt
19 lines
704 B
Bash
Executable File
19 lines
704 B
Bash
Executable File
#!/bin/bash
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
cd "$SCRIPT_DIR/.." || exit 1
|
|
|
|
RUST_BACKTRACE=full cargo +nightly clippy --all --all-features --release --tests --examples --benches -- -Z macro-backtrace \
|
|
-D clippy::all \
|
|
-D clippy::pedantic \
|
|
-W clippy::similar_names \
|
|
-A clippy::type_repetition_in_bounds \
|
|
-A clippy::missing-errors-doc \
|
|
-A clippy::cast-possible-truncation \
|
|
-A clippy::used-underscore-binding \
|
|
-A clippy::ptr-as-ptr \
|
|
-A clippy::missing-panics-doc \
|
|
-A clippy::missing-docs-in-private-items \
|
|
-A clippy::unseparated-literal-suffix \
|
|
-A clippy::module-name-repetitions \
|
|
-A clippy::unreadable-literal \
|