mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-07 22:55:00 +00:00
12 lines
316 B
Rust
12 lines
316 B
Rust
#![warn(clippy::dbg_macro)]
|
|
// See github.com/roc-lang/roc/issues/800 for discussion of the large_enum_variant check.
|
|
#![allow(clippy::large_enum_variant, clippy::upper_case_acronyms)]
|
|
|
|
pub mod called_via;
|
|
pub mod ident;
|
|
pub mod low_level;
|
|
pub mod module_err;
|
|
pub mod symbol;
|
|
|
|
#[macro_use]
|
|
extern crate lazy_static;
|