File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
1920Bugs:
2021
Original file line number Diff line number Diff line change @@ -199,9 +199,8 @@ Example::
199199 max-line-length = 160
200200
201201At 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
207206Error codes
Original file line number Diff line number Diff line change 7979except ImportError :
8080 USER_CONFIG = None
8181
82- PROJECT_CONFIG = ('setup.cfg' , 'tox.ini' , '.pep8' )
82+ PROJECT_CONFIG = ('setup.cfg' , 'tox.ini' )
8383TESTSUITE_PATH = os .path .join (os .path .dirname (__file__ ), 'testsuite' )
8484MAX_LINE_LENGTH = 79
8585REPORT_FORMAT = {
You can’t perform that action at this time.
0 commit comments