### What it does Check imports are renamed according to a config list (similar to [disallowed_method](https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_method)). ### Categories - Nursery This is a style lint so consistency and readability (subjective). ### Drawbacks None :shrug: ### Example ```rust use serde_json::Value; ``` Could be written as: ```rust use serde_json::Value as JsonValue; ``` If everyone is ok with this in the nursery I can open a PR.