ignore clippy::upper_case_acroynms in pest grammar crate

This commit is contained in:
collin 2021-02-01 09:36:53 -08:00
parent 99deb093f8
commit 4f4d0d051d

View File

@ -20,7 +20,7 @@
//! The [`Grammar`] type is the datatype generated by the pest parser using grammar from `leo.pest`. //! The [`Grammar`] type is the datatype generated by the pest parser using grammar from `leo.pest`.
//! The [`Grammar`] type is intended to be parsed into a [`Ast`]. It should not be parsed by //! The [`Grammar`] type is intended to be parsed into a [`Ast`]. It should not be parsed by
//! any other pass of the compiler. //! any other pass of the compiler.
#![allow(clippy::upper_case_acronyms)]
#[macro_use] #[macro_use]
extern crate lazy_static; extern crate lazy_static;
#[macro_use] #[macro_use]