StyleΒΆ
Rules for code style and structure.
Enable with:
enable = ["style"]
Rule |
Message |
Python |
Autofix |
|---|---|---|---|
Do not annotate self in instance methods. |
Any |
Yes |
|
Inline exception message strings instead of assigning throwaway variables. |
Any |
Yes |
|
Use a fixed message when translating an exception, and preserve the cause with |
Any |
No |
|
Class names must not start with an underscore prefix. |
Any |
No |
|
Define public methods before underscore-prefixed helper methods. |
Any |
No |