rust-lang/rust-clippy
在 GitHub 查看upper_case_acronyms complains about full-capital identifiers
Open
#6,631 创建于 2021年1月23日
C-bugI-false-positivegood first issue
仓库指标
- Star
- (10,406 star)
- PR 合并指标
- (平均合并 19天 22小时) (30 天内合并 113 个 PR)
描述
Lint name: upper_case_acronyms
I tried this code:
pub enum DIR {}
Checks for camel case name containing a capitalized acronym. but there is no camel-case here, it's literally all uppercase, not sure why this triggers here then....