Auto merge of #6805 - matthiaskrgr:uca_nopub_6803, r=flip1995
upper_case_acronyms: don't warn on public items Fixes #6803 changelog: upper_case_acronyms: ignore public items
This commit is contained in:
commit
8af28840d2
@ -1,7 +1,7 @@
|
||||
use clippy_utils::diagnostics::span_lint_and_sugg;
|
||||
use if_chain::if_chain;
|
||||
use itertools::Itertools;
|
||||
use rustc_ast::ast::{Item, ItemKind, Variant};
|
||||
use rustc_ast::ast::{Item, ItemKind, Variant, VisibilityKind};
|
||||
use rustc_errors::Applicability;
|
||||
use rustc_lint::{EarlyContext, EarlyLintPass, LintContext};
|
||||
use rustc_middle::lint::in_external_macro;
|
||||
@ -105,6 +105,8 @@ impl EarlyLintPass for UpperCaseAcronyms {
|
||||
it.kind,
|
||||
ItemKind::TyAlias(..) | ItemKind::Enum(..) | ItemKind::Struct(..) | ItemKind::Trait(..)
|
||||
);
|
||||
// do not lint public items
|
||||
if !matches!(it.vis.kind, VisibilityKind::Public);
|
||||
then {
|
||||
check_ident(cx, &it.ident, self.upper_case_acronyms_aggressive);
|
||||
}
|
||||
|
@ -20,4 +20,9 @@ enum Flags {
|
||||
// `GccLlvmSomething`
|
||||
struct GCCLLVMSomething;
|
||||
|
||||
// don't warn on public items
|
||||
pub struct MIXEDCapital;
|
||||
|
||||
pub struct FULLCAPITAL;
|
||||
|
||||
fn main() {}
|
||||
|
@ -20,4 +20,8 @@ enum Flags {
|
||||
// `GccLlvmSomething`
|
||||
struct GCCLLVMSomething;
|
||||
|
||||
// public items must not be linted
|
||||
pub struct NOWARNINGHERE;
|
||||
pub struct ALSONoWarningHERE;
|
||||
|
||||
fn main() {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user