mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
19 lines
599 B
Rust
19 lines
599 B
Rust
#![warn(clippy::all, clippy::dbg_macro)]
|
|
// See github.com/rtfeldman/roc/issues/800 for discussion of the large_enum_variant check.
|
|
#![allow(clippy::large_enum_variant)]
|
|
|
|
pub mod borrow;
|
|
pub mod expand_rc;
|
|
pub mod inc_dec;
|
|
pub mod ir;
|
|
pub mod layout;
|
|
pub mod tail_recursion;
|
|
|
|
// Temporary, while we can build up test cases and optimize the exhaustiveness checking.
|
|
// For now, following this warning's advice will lead to nasty type inference errors.
|
|
//#[allow(clippy::ptr_arg)]
|
|
//pub mod decision_tree;
|
|
#[allow(clippy::ptr_arg)]
|
|
pub mod decision_tree;
|
|
#[allow(clippy::ptr_arg)]
|
|
pub mod exhaustive;
|