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

Use a fixed message when translating an exception, and preserve the cause with raise ... from exc.

Any

No

no-underscore-class

Class names must not start with an underscore prefix.

Any

No

public-method-order

Define public methods before underscore-prefixed helper methods.

Any

No