Skip to main content

max / makeover-geometry

1.4 KB · 42 lines History Blame Raw
1 [package]
2 name = "makeover-geometry"
3 version = "0.4.0"
4 edition = "2024"
5 description = "The invariant half of the make-family design system: relational spacing, radius, border width and type scale. Geometry never varies by theme, which is why it does not live in makeover."
6 license = "MIT"
7 repository = "https://makenot.work/git/max/makeover-geometry"
8
9 [dependencies]
10
11 [lints.rust]
12 unused = "warn"
13 unreachable_pub = "warn"
14
15 [lints.clippy]
16 pedantic = { level = "warn", priority = -1 }
17 # Allow-list tuned from a measured breakdown across server/multithreaded/pter
18 # (2026-07-22). These are the high-churn / low-signal pedantic lints; everything
19 # else in `pedantic` stays a warning. Keep this block identical across repos.
20 module_name_repetitions = "allow"
21 # Doc lints. No docs-completeness push is underway.
22 missing_errors_doc = "allow"
23 missing_panics_doc = "allow"
24 doc_markdown = "allow"
25 # Numeric casts. Endemic and mostly intentional in size and byte math.
26 cast_possible_truncation = "allow"
27 cast_sign_loss = "allow"
28 cast_precision_loss = "allow"
29 cast_possible_wrap = "allow"
30 cast_lossless = "allow"
31 # Subjective structure and style nags. High churn, low signal.
32 must_use_candidate = "allow"
33 too_many_lines = "allow"
34 struct_excessive_bools = "allow"
35 similar_names = "allow"
36 items_after_statements = "allow"
37 single_match_else = "allow"
38 # Frequent false-positives in TUI and router-heavy code.
39 match_same_arms = "allow"
40 unnecessary_wraps = "allow"
41 type_complexity = "allow"
42