Static rustc_lint::nonstandard_style::NON_UPPER_CASE_GLOBALS [−][src]
pub static NON_UPPER_CASE_GLOBALS: &LintExpand description
The non_upper_case_globals lint detects static items that don’t have
uppercase identifiers.
Example
static max_points: i32 = 5;{{produces}}
Explanation
The preferred style is for static item names to use all uppercase
letters such as MAX_POINTS.