diff options
author | Ian Lee <IanLee1521@gmail.com> | 2016-05-31 11:57:01 -0700 |
---|---|---|
committer | Ian Lee <IanLee1521@gmail.com> | 2016-05-31 11:57:01 -0700 |
commit | f2ade60c2fd96dd7731d8ec62b3cbe6338823954 (patch) | |
tree | 35db4646daa356c8726c762c93d15ae4eec7344a /pycodestyle.py | |
parent | 56a9882ec8bea2fe3dc10ab5477187e57468f970 (diff) | |
download | pep8-f2ade60c2fd96dd7731d8ec62b3cbe6338823954.tar.gz |
Removed project level `.pep8` config file
Closes #364
Diffstat (limited to 'pycodestyle.py')
-rwxr-xr-x | pycodestyle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pycodestyle.py b/pycodestyle.py index de40b07..dea67cd 100755 --- a/pycodestyle.py +++ b/pycodestyle.py @@ -79,7 +79,7 @@ try: except ImportError: USER_CONFIG = None -PROJECT_CONFIG = ('setup.cfg', 'tox.ini', '.pep8') +PROJECT_CONFIG = ('setup.cfg', 'tox.ini') TESTSUITE_PATH = os.path.join(os.path.dirname(__file__), 'testsuite') MAX_LINE_LENGTH = 79 REPORT_FORMAT = { |