main: permit dead code (no warnings) when building.

I want my build to tell me if there's anything wrong with it.  Dead
Code warnings distract me from checking that.

OTOH when I'm running Clippy I want it to catch everything.  Hence
this change.
This commit is contained in:
2026-04-02 06:45:44 +01:00
committed by oreodave
parent 534da2ed71
commit 298499207b

View File

@@ -1,3 +1,6 @@
// permit dead code when not using clippy
#![cfg_attr(not(clippy), allow(dead_code))]
mod card; mod card;
mod helper; mod helper;
mod modes; mod modes;