Skip to content

Commit

Permalink
style: Ignore build dir on flake8 and isort
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoliwa committed Jan 28, 2019
1 parent 1e0d1a2 commit 1c18ce3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ replace = "version": "{new_version}",
[flake8]
ignore = D107,D401,D202,D203,E203,E402,E501,W503
max-line-length = 120
exclude = docs,.tox
exclude = docs,.tox,build
max-complexity = 10
inline-quotes = double

[isort]
line_length = 120
skip = docs,.tox
skip = docs,.tox,build
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
Expand Down

0 comments on commit 1c18ce3

Please sign in to comment.