Nicolas Cantu 01860b7af7 chore: remove gitmodules, add docv workspace crates, update systemd README
- 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
2026-04-03 17:55:50 +02:00

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"