Some checks failed
CI / Lint (bash) (push) Has been cancelled
CI / Lint (markdown) (push) Has been cancelled
CI / Lint (nickel) (push) Has been cancelled
CI / Lint (nushell) (push) Has been cancelled
CI / Lint (rust) (push) Has been cancelled
CI / Code Coverage (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Build (macos-latest) (push) Has been cancelled
CI / Build (ubuntu-latest) (push) Has been cancelled
CI / Build (windows-latest) (push) Has been cancelled
CI / Benchmark (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / License Compliance (push) Has been cancelled
24 lines
353 B
TOML
24 lines
353 B
TOML
[alias]
|
|
lint = "clippy --all-targets --all-features -- -D warnings"
|
|
fmt-all = "fmt --all"
|
|
|
|
[build]
|
|
rustflags = [
|
|
"-D",
|
|
"warnings",
|
|
"-D",
|
|
"future-incompatible",
|
|
"-D",
|
|
"let-underscore",
|
|
"-D",
|
|
"nonstandard-style",
|
|
"-D",
|
|
"rust-2018-compatibility",
|
|
"-D",
|
|
"rust-2018-idioms",
|
|
"-D",
|
|
"rust-2021-compatibility",
|
|
"-D",
|
|
"unused",
|
|
]
|