aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_ty/src/diagnostics/decl_check/case_conv.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary allocs in case_convLukas Wirth2021-02-051-18/+16
|
* Deny unreachable-pubAleksey Kladov2020-11-021-3/+3
| | | | | | | | It's very useful when `pub` is equivalent to "this is crate's public API", let's enforce this! Ideally, we should enforce it for local `cargo test`, and only during CI, but that needs https://github.com/rust-lang/cargo/issues/5034.
* Make IncorrectDiagnostic match rustc by copying rustc's code.Arif Roktim2020-10-251-126/+123
|
* Properly identify camel cased acronyms as UpperCamelCaseArif Roktim2020-10-211-1/+8
|
* Add to_upper_snake_case function to stdxIgor Aleksanov2020-10-121-0/+194