Skip to content

Commit

Permalink
feat: Add more allows
Browse files Browse the repository at this point in the history
  • Loading branch information
wormtql committed Mar 18, 2024
1 parent 039e5cd commit ba7dd47
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions mona_dsl/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
#![feature(decl_macro)]
#![allow(unused_imports)]
#![allow(unused_variables)]
#![allow(unreachable_patterns)]
#![allow(clippy::approx_constant)]
#![allow(unused_mut)]
#![allow(unused_assignments)]
#![allow(dead_code)]
#![allow(unused_macros)]
#![allow(unused_imports)]
#![allow(unused_variables)]
#![allow(unreachable_patterns)]
#[macro_use] extern crate pest_derive;


use crate::compiler::compiler::CodeObject;
use crate::compiler::simple_compiler::MonaCompilerASTToCode;
use crate::error::CompileError;
Expand Down

0 comments on commit ba7dd47

Please sign in to comment.