Skip to content

Commit 706834e

Browse files
fix: resolve clippy style lints and refresh stale docs
Unblock Lint & Format (is_some_and / trim_split_whitespace) and update docs linked to Makefile/CONTRIBUTING after the cleanup consolidation. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 2964846 commit 706834e

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

docs/development.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Local Development with k3d
22

3-
<!-- chart-sync: 2026-07-29T12:00Z Dockerfile cargo-chef latest-rust-1.95-slim-bookworm -->
3+
<!-- chart-sync: 2026-07-30T04:00Z Dockerfile cargo-chef latest-rust-1.95-slim-bookworm -->
44

55
This guide walks you through setting up a fully functional Stellar development environment on your local machine using [k3d](https://k3d.io) — K3s running inside Docker. No cloud account required.
66

7+
For repository scratch cleanup and contributor gates, see root [`DEVELOPMENT.md`](../DEVELOPMENT.md) (`make cleanup`, `make health`) and [`CONTRIBUTING.md`](../CONTRIBUTING.md).
8+
79
---
810

911
## Prerequisites

docs/stale-docs-detector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
> is flagged as _stale_. CI will fail. Update the doc (or suppress the false
55
> positive), then push.
66
>
7-
> Last refreshed: 2026-07-29 (Makefile / CI wiring updates).
7+
> Last refreshed: 2026-07-30 (Makefile cleanup target / CONTRIBUTING script conventions).
88
99
---
1010

src/commands/health_check.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ fn check_issue_template_metadata() -> Check {
168168
.filter(|e| {
169169
let path = e.path();
170170
path.extension()
171-
.map_or(false, |ext| ext == "yml" || ext == "yaml")
171+
.is_some_and(|ext| ext == "yml" || ext == "yaml")
172172
})
173173
.count();
174174

src/infra.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@ fn sanitize_generation(value: &str) -> String {
190190
.replace("zen3", "Zen 3");
191191

192192
cleaned
193-
.trim()
194193
.split_whitespace()
195194
.map(|word| {
196195
let mut chars = word.chars();

0 commit comments

Comments
 (0)