mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
17 lines
471 B
Rust
17 lines
471 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)]
|
|
// we actually want to compare against the literal float bits
|
|
#![allow(clippy::clippy::float_cmp)]
|
|
|
|
pub mod gen_dict;
|
|
pub mod gen_hash;
|
|
pub mod gen_list;
|
|
pub mod gen_num;
|
|
pub mod gen_primitives;
|
|
pub mod gen_records;
|
|
pub mod gen_result;
|
|
pub mod gen_set;
|
|
pub mod gen_str;
|
|
pub mod gen_tags;
|
|
mod helpers;
|