forked from M-Labs/nac3
David Mak
40a3bded36
So that this does not have to be manually passed to the `cargo clippy` command-line every single time. Also allows incrementally addressing these lints by removing and fixing them one-by-one.
22 lines
491 B
Rust
22 lines
491 B
Rust
#![deny(clippy::all)]
|
|
#![warn(clippy::pedantic)]
|
|
#![allow(
|
|
dead_code,
|
|
clippy::cast_lossless,
|
|
clippy::cast_possible_truncation,
|
|
clippy::cast_sign_loss,
|
|
clippy::enum_glob_use,
|
|
clippy::implicit_hasher,
|
|
clippy::missing_errors_doc,
|
|
clippy::missing_panics_doc,
|
|
clippy::module_name_repetitions,
|
|
clippy::similar_names,
|
|
clippy::too_many_lines,
|
|
clippy::wildcard_imports
|
|
)]
|
|
|
|
pub mod codegen;
|
|
pub mod symbol_resolver;
|
|
pub mod toplevel;
|
|
pub mod typecheck;
|