- Drop .gitmodules (ia_dev tracked as submodule pointer without file) - Add services/docv Cargo workspace: docv-back, docv-shared, migrations, sources - Refresh systemd/README.md
15 lines
444 B
TOML
15 lines
444 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["docv-shared", "docv-back"]
|
|
|
|
[workspace.lints.clippy]
|
|
# Align with fix-lint / docs/REGLES_CODING_PROJET.md: no unwrap in production, typed errors, propagation via ?
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|
|
# Encourage explicit types and avoid unclear code
|
|
type_complexity = "warn"
|
|
# Avoid redundant clones
|
|
redundant_clone = "warn"
|
|
# Prefer ? over match on Option/Result where clear
|
|
question_mark = "warn"
|