StyleΒΆ

Rules for code style and structure.

Enable with:

enable = ["style"]

Rule

Message

Python

Autofix

no-annotated-self

Do not annotate self in instance methods.

Any

Yes

no-exception-message-variables

Inline exception message strings instead of assigning throwaway variables.

Any

Yes

no-str-exception-translation

Do not translate exceptions by passing str(exc); use a stable message and chain the cause.

Any

No

no-underscore-class

Class names must not start with an underscore prefix.

Any

No

public-method-order

Define public methods before private helpers in behavior classes.

Any

No