Search current directory if no paths are specified

This fixes a regression in behaviour from 2.x to 3.

Closes #150
This commit is contained in:
Ian Cordasco 2016-06-26 15:08:58 -05:00
parent 790549fd25
commit b194717d1a
No known key found for this signature in database
GPG key ID: 656D3395E4A9791A
4 changed files with 27 additions and 7 deletions

View file

@ -132,7 +132,7 @@ ignore = D203
# NOTE(sigmavirus24): Once we release 3.0.0 this exclude option can be specified
# across multiple lines. Presently it cannot be specified across multiple lines.
# :-(
exclude = .git,__pycache__,docs/source/conf.py,old,build,dist,tests/fixtures/
exclude = .tox,.git,__pycache__,docs/source/conf.py,build,dist,tests/fixtures/*,*.pyc
max-complexity = 10
import-order-style = google
application-import-names = flake8