mirror of
https://github.com/zhom/banderole.git
synced 2026-06-07 06:53:54 +02:00
chore: lintnig
This commit is contained in:
+10
-2
@@ -1,3 +1,11 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
cargo clippy --fix --allow-dirty --all-targets --all-features -- -D warnings -D clippy::all && cargo fmt --all
|
||||
# Run rustfmt first for quick formatting
|
||||
cargo fmt --all
|
||||
|
||||
# Run clippy across all targets and features; fail on any warning
|
||||
cargo clippy --fix --allow-dirty --all-targets --all-features -- -D warnings -D clippy::all
|
||||
|
||||
# Additionally, run clippy for tests explicitly to catch test-only lints
|
||||
cargo clippy --fix --allow-dirty --tests -- -D warnings -D clippy::all
|
||||
Reference in New Issue
Block a user