Skip to content

Commit

Permalink
Merge pull request #839 from LibraryOfCongress/tweak-isort-settings
Browse files Browse the repository at this point in the history
setup.cfg: bring isort settings in-line with Black
  • Loading branch information
rstorey committed Mar 6, 2019
2 parents 52fca89 + 5125e26 commit fee5217
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions setup.cfg
Expand Up @@ -4,17 +4,19 @@ ignore =
max-line-length = 88

[tool:pytest]
DJANGO_SETTINGS_MODULE=concordia.settings_test
addopts=-rf
DJANGO_SETTINGS_MODULE = concordia.settings_test
addopts = -rf

[isort]
line_length = 88
known_first_party = concordia,importer,exporter
default_section = THIRDPARTY
force_grid_wrap = 0
include_trailing_comma = True
known_first_party = concordia,importer,exporter
line_length = 88
multi_line_output = 3
not_skip = __init__.py
skip = .venv
use_parentheses = True
multi_line_output = 3

[flake8]
exclude = .venv
Expand Down

0 comments on commit fee5217

Please sign in to comment.