-
-
Notifications
You must be signed in to change notification settings - Fork 91
Open
Labels
Description
Steps:
- Search for the line: ruff.toml ->
# "N", # https://docs.astral.sh/ruff/rules/#pep8-naming-n. - Uncomment this line.
- Run
just formatorjust format-conciseorjust format-grouped. - Manually fix any remaining violations.
- Run
just lintorjust lint-conciseorjust lint-grouped. - Repeat steps 4–5 until all violations are resolved.
Current [pep8-naming (N)] violations:
- N802 (invalid-function-name): Function names must be lowercase (snake_case)
- N803 (invalid-argument-name): Argument names must be lowercase (snake_case)
- N806 (non-lowercase-variable-in-function): Variables inside functions must be lowercase (snake_case)
- N818 (error-suffix-on-exception-name): Exception class names should end with "Error" (suffix meaning: the ending of a word)
- N999 (invalid-module-name): Module (file) names must be snake_case