rust/clippy_lints
Matthias Krüger 59750dceb8 upper_case_acronyms: add optional aggressive mode and relax default
Moves the lint back from pedantic to style group.
The lint default now only warns on names that are completely capitalized, like "WORD"
and only if the name is longer than 2 chars (so that names where each of the letter represents a word are still distinguishable).
For example: FP (false positive) would still be "valid" and not warned about (but EOF would warn).

A "upper_case_acronyms_aggressive: true/false" config option was added that restores the original lint behaviour to warn
on any kind of camel case name that had more than one capital letter following another capital letter.
2021-02-24 23:50:53 +01:00
..
src upper_case_acronyms: add optional aggressive mode and relax default 2021-02-24 23:50:53 +01:00
Cargo.toml Get tests to pass 2021-02-23 18:50:30 -05:00
README.md

This crate contains Clippy lints. For the main crate, check GitHub.