Clippy should lint for stuttered names. For instance, ``` rust mod foo { struct FooBar {} } ``` Should warn the that users will write the type `foo::FooBar` and suggest the the name `foo::Bar` instead. This lint should probably be default allow.