mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-13 00:05:02 -05:00
- Update .flake8 config to exclude workspace directories and ignore E203 - Fix import sorting (isort) across multiple files - Fix code formatting (black) across multiple files - Remove unused imports and fix line length issues (flake8) - Fix f-strings without placeholders and unused variables Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
205 B
INI
16 lines
205 B
INI
[flake8]
|
|
max-line-length = 88
|
|
extend-ignore = E203
|
|
exclude =
|
|
.tox,
|
|
__pycache__,
|
|
*.pyc,
|
|
.env,
|
|
venv*,
|
|
.venv,
|
|
reports,
|
|
dist,
|
|
data,
|
|
.benchmark_workspaces,
|
|
.autogpt,
|