Allow upper case acronyms in clippy

This is not a big deal, and not worth changing in a bunch of places
just to appease clippy.
This commit is contained in:
Richard Feldman 2021-03-25 22:54:54 -04:00
parent 2d89df7f67
commit 202a80df44
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#![warn(clippy::all, clippy::dbg_macro)]
// See github.com/rtfeldman/roc/issues/800 for discussion of the large_enum_variant check.
#![allow(clippy::large_enum_variant)]
#![allow(clippy::large_enum_variant, clippy::upper_case_acronyms)]
#[cfg_attr(test, macro_use)]
extern crate indoc;