I propose to add a new lint for making imports in codebases more consistent, which fires when items are imported inconsistently.
For example, many items in the std::fs, std::io, std::iter, std::env and other modules are conventionally referred to via the parent path:
use std::fs;
use std::fmt;
use std::io;