diff options
| author | Tobias McNulty <tobias@caktusgroup.com> | 2024-10-03 20:20:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-03 20:20:36 -0400 |
| commit | 064bd53fee225d8b940608270d71dd7d7e1adbe1 (patch) | |
| tree | 9a39d4218af6399650d6e33dc0ba92cb6919a9a8 /setup.cfg | |
| parent | 1be8f1364ccf5e1b3450fa9fe92a0b020ecdb96a (diff) | |
Fixed `isort` and `flake8` errors and ran all `tox` envs in CI (#1642)
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ [flake8] -exclude = djangodocs,.tox,*/migrations/* +exclude = djangodocs,.tox,*/migrations/*,.direnv ignore = F405,W504,W503 # black enforces an 88 char line length but in some edge cases it's unable to # do so, and in that case it creates an unresolvable E501 error. The solution @@ -11,7 +11,7 @@ per-file-ignores = [isort] line_length = 88 profile = black -skip = .tox,djangodocs +skip = .tox,djangodocs,.direnv known_first_party = accounts,aggregator,blog,contact,dashboard,djangoproject,docs,foundation,fundraising,legacy,members,releases,svntogit,tracdb combine_as_imports = true include_trailing_comma = true |
