Add autopep8 configuration and integrate into workflows for code formatting

This commit is contained in:
mr. M
2025-01-12 16:57:34 +01:00
parent 838569e386
commit 225ab67a50
9 changed files with 156 additions and 99 deletions

6
pyproject.toml Normal file
View File

@@ -0,0 +1,6 @@
[tool.autopep8]
max_line_length = 120
ignore = "E501,W6" # or ["E501", "W6"]
recursive = true
aggressive = 3
indent_size = 2