Skip to content

Commit

Permalink
Ignore buggy clippy::lint_groups_priority lint
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed May 24, 2024
1 parent b1970d7 commit 37ad5b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ borrow_as_ptr = { level = "allow", priority = 1 } # https://github.com/rust-lang
declare_interior_mutable_const = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665
doc_markdown = { level = "allow", priority = 1 }
float_cmp = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
lint_groups_priority = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/12270
manual_assert = { level = "allow", priority = 1 }
manual_range_contains = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/6455#issuecomment-1225966395
missing_errors_doc = { level = "allow", priority = 1 }
Expand Down
1 change: 1 addition & 0 deletions tests/lint/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
clippy::min_ident_chars,
clippy::single_char_lifetime_names
)] // TODO
#![allow(clippy::lint_groups_priority)] // https://github.com/rust-lang/rust-clippy/issues/12270

/// Test for basic cases.
pub mod basic {
Expand Down

0 comments on commit 37ad5b6

Please sign in to comment.