Pattern: Malformed UpperCamelCase for extension name
Issue: -
Extensions should capitalize the first letter of each word (including the first word), and use no separators.
Example of correct code:
extension MyFancyList<T> on List<T> {
// ...
}
extension SmartIterable<T> on Iterable<T> {
// ...
}