Skip to content

Commit af0a372

Browse files
committed
fix(build): align lint target and .dockerignore with CI/gitignore
- Makefile lint target now runs `cargo clippy --workspace` to match what CI actually runs (.github/workflows/ci.yml), previously it only linted the root crate. - .dockerignore was missing `artifacts/`, which is already excluded via .gitignore and was explicitly called out in issue #922.
1 parent 11c00de commit af0a372

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ benches/src/scrap-menu/
99

1010
# Rust build artifacts
1111
*.wasm
12+
artifacts/
1213

1314
# Logs
1415
*.log

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ test-all:
77
cargo test --workspace
88

99
lint:
10-
cargo clippy -- -D warnings
10+
cargo clippy --workspace -- -D warnings
1111

1212
build-wasm:
1313
cargo build --target wasm32-unknown-unknown --release

0 commit comments

Comments
 (0)