Skip to content
Snippets Groups Projects
Verified Commit de6f777c authored by Vincent Lafeychine's avatar Vincent Lafeychine
Browse files

feat(ci): Clippy is now required to succeed

parent 7fcfa7a8
No related branches found
No related tags found
1 merge request!29Add clippy analysis
Pipeline #99749 passed
......@@ -59,7 +59,6 @@ nix-cache:
clippy:
stage: lint
allow_failure: true
script:
- cd rr_frontend
- nix develop -c cargo clippy --all-targets --all-features --no-deps
......
......@@ -2,14 +2,14 @@
rustflags = [
# === ENABLE ALL LINTS ===
"-Wclippy::complexity",
"-Wclippy::correctness",
"-Wclippy::nursery",
"-Wclippy::pedantic",
"-Wclippy::perf",
"-Wclippy::restriction",
"-Wclippy::style",
"-Wclippy::suspicious",
"-Dclippy::complexity",
"-Dclippy::correctness",
"-Dclippy::nursery",
"-Dclippy::pedantic",
"-Dclippy::perf",
"-Dclippy::restriction",
"-Dclippy::style",
"-Dclippy::suspicious",
# === REASONABLE LINTS ===
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment