Naming conventions
- Unconventional class method name
Reports class methods with names that are either too short, too long, or don't match the specified regular expression pattern.
- Unconventional class variable name
Reports class variables with names that are either too short, too long, or don't match the specified regular expression pattern.
- Unconventional class/module name
Reports classes and modules with names that are either too short, too long or don't match the specified regular expression pattern.
- Unconventional constant name
Reports any constants whose names are either too short, too long, or do not follow the specified regular expression pattern.
- Unconventional global variable name
Reports global variables with names that are either too short, too long, or don't match the specified regular expression pattern.
- Unconventional instance method name
Reports instance methods with names that are either too short, too long, or don't match the specified regular expression pattern.
- Unconventional instance variable name
Reports instance variables with names that are either too short, too long, or don't match the specified regular expression pattern.
- Unconventional local variable name
Reports local variables with names that are either too short, too long, or don't match the specified regular expression pattern.
- Unconventional parameter name
Reports parameters with names that are either too short, too long, or don't match the specified regular expression pattern.