3dfcd5903a
Lint / Python (flake8) (push) Failing after 4s
Adds .gitea/workflows/lint.yml running flake8 with .flake8 config. Removes unused imports (flask.redirect, flask.url_for, time, typing.Tuple). Config ignores E221/E305 (intentional column alignment and function spacing). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
232 B
INI
7 lines
232 B
INI
[flake8]
|
|
max-line-length = 120
|
|
# E221: multiple spaces before operator — intentional column alignment
|
|
# E305: two blank lines after function — relaxed for module-level code
|
|
extend-ignore = E221, E305
|
|
exclude = __pycache__, .git
|