This commit is contained in:
2026-01-08 01:00:26 +10:30
commit 211854ca0a
70 changed files with 5241 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
[flake8]
max-line-length = 100
exclude =
.git,
__pycache__,
.venv,
venv,
env,
migrations,
build,
dist,
*.egg-info
ignore =
E203, # whitespace before ':'
E501, # line too long (handled by black)
W503, # line break before binary operator
W504 # line break after binary operator
per-file-ignores =
__init__.py:F401