chore: add more clippy lints and fix some

This commit is contained in:
Christoph J. Scherr 2024-07-09 17:36:16 +02:00
parent c81952002f
commit 921387b13e
2 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
#![warn(clippy::pedantic, clippy::style, clippy::nursery)]
pub mod args;
pub mod printing;
pub mod repl;

View File

@ -5,6 +5,7 @@
//!
//! `pt` is a project consisting of multiple smaller crates, all bundled together in this
//! "main crate". Most crates will only show up if you activate their feature.
#![warn(clippy::pedantic, clippy::style, clippy::nursery)]
#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
#[cfg(feature = "bintols")]
pub use libpt_bintols as bintols;