File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Changes:
15
15
* Added tox test support for Python 3.5 and pypy3
16
16
* Added check E275 for whitespace on `from ... import ...` lines; #489 / #491
17
17
* Added W503 to the list of codes ignored by default ignore list; #498
18
+ * Removed use of project level `.pep8` configuration file; #364
18
19
19
20
Bugs:
20
21
Original file line number Diff line number Diff line change @@ -199,9 +199,8 @@ Example::
199
199
max-line-length = 160
200
200
201
201
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.
205
204
206
205
207
206
Error codes
Original file line number Diff line number Diff line change 79
79
except ImportError :
80
80
USER_CONFIG = None
81
81
82
- PROJECT_CONFIG = ('setup.cfg' , 'tox.ini' , '.pep8' )
82
+ PROJECT_CONFIG = ('setup.cfg' , 'tox.ini' )
83
83
TESTSUITE_PATH = os .path .join (os .path .dirname (__file__ ), 'testsuite' )
84
84
MAX_LINE_LENGTH = 79
85
85
REPORT_FORMAT = {
You can’t perform that action at this time.
0 commit comments