mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
11 lines
295 B
Rust
11 lines
295 B
Rust
#![warn(clippy::dbg_macro)]
|
|
// See github.com/rtfeldman/roc/issues/800 for discussion of the large_enum_variant check.
|
|
#![allow(clippy::large_enum_variant, clippy::upper_case_acronyms)]
|
|
|
|
pub mod ident;
|
|
pub mod low_level;
|
|
pub mod operator;
|
|
pub mod symbol;
|
|
|
|
#[macro_use]
|
|
extern crate lazy_static;
|