Skip to content

Commit

Permalink
Merge pull request #163 from jamescooke/fix-isort
Browse files Browse the repository at this point in the history
Fix isort config
  • Loading branch information
jamescooke committed Aug 1, 2020
2 parents 500daea + 58d240b commit 8ac9697
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ lint:
@echo "=== mypy ==="
MYPYPATH=stubs mypy src/flake8_aaa tests
@echo "=== isort ==="
isort --quiet --recursive --diff $(lint_files) > isort.out
if [ "$$(wc -l isort.out)" != "0 isort.out" ]; then cat isort.out; exit 1; fi
isort --check --diff $(lint_files)
@echo "=== yapf ==="
yapf --recursive --diff $(lint_files)
@echo "=== rst ==="
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ include_trailing_comma=True
known_first_party=flake8_aaa
line_length=120
multi_line_output=3
not_skip=__init__.py

[flake8]
max-line-length = 120
Expand Down

0 comments on commit 8ac9697

Please sign in to comment.