Skip to content

Commit 60ad548

Browse files
committed
Ignore clippy lints in the lalrpop generated file
1 parent 1b57f07 commit 60ad548

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

parser/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ pub mod error;
77
mod fstring;
88
pub mod lexer;
99
pub mod parser;
10-
lalrpop_mod!(python);
10+
lalrpop_mod!(
11+
#[allow(clippy::all)]
12+
python
13+
);
1114
pub mod token;

0 commit comments

Comments
 (0)