Skip to content

Commit

Permalink
Allow clippy::upper-case-acronyms lint
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Apr 8, 2021
1 parent b53188b commit 333d502
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/map.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use super::{matchers, Matcher, Type};

#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum MatcherType {
APP,
Expand Down
1 change: 1 addition & 0 deletions src/matchers/doc.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use core::convert::TryInto;

#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Eq, PartialEq)]
enum DocType {
// DOC,
Expand Down

0 comments on commit 333d502

Please sign in to comment.