Skip to content

Commit f2ade60

Browse files
committed
Removed project level .pep8 config file
Closes #364
1 parent 56a9882 commit f2ade60

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Changes:
1515
* Added tox test support for Python 3.5 and pypy3
1616
* Added check E275 for whitespace on `from ... import ...` lines; #489 / #491
1717
* Added W503 to the list of codes ignored by default ignore list; #498
18+
* Removed use of project level `.pep8` configuration file; #364
1819

1920
Bugs:
2021

docs/intro.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,8 @@ Example::
199199
max-line-length = 160
200200

201201
At the project level, a ``setup.cfg`` file or a ``tox.ini`` file is read if
202-
present (``.pep8`` file is also supported, but it is deprecated). If none of
203-
these files have a ``[pep8]`` section, no project specific configuration is
204-
loaded.
202+
present. If none of these files have a ``[pep8]`` section, no project specific
203+
configuration is loaded.
205204

206205

207206
Error codes

pycodestyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
except ImportError:
8080
USER_CONFIG = None
8181

82-
PROJECT_CONFIG = ('setup.cfg', 'tox.ini', '.pep8')
82+
PROJECT_CONFIG = ('setup.cfg', 'tox.ini')
8383
TESTSUITE_PATH = os.path.join(os.path.dirname(__file__), 'testsuite')
8484
MAX_LINE_LENGTH = 79
8585
REPORT_FORMAT = {

0 commit comments

Comments
 (0)