stylist.rule#
None language specific rules.
Classes
|
Report instances of lines being too long. |
|
Abstract parent of all rules. |
Examines the text for white space at the end of lines. |
- class stylist.rule.LimitLineLength(length=79, ignore_leading_whitespace=False)#
Bases:
RuleReport instances of lines being too long.
- examine(subject)#
Examines the provided source code object for issues.
- Parameters:
subject (
SourceText) – The source file to be examined.- Return type:
List[Issue]- Returns:
All issues found with the source.
- class stylist.rule.Rule#
Bases:
ABCAbstract parent of all rules.
- class stylist.rule.TrailingWhitespace#
Bases:
RuleExamines the text for white space at the end of lines. This includes lines which consist entirely of white space.
- examine(subject)#
Examines the provided source code object for issues.
- Parameters:
subject (
SourceText) – The source file to be examined.- Return type:
List[Issue]- Returns:
All issues found with the source.