summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add Ian to list of maintainers.Ian Lee2014-12-134-5/+13
|/
* Do not report E704 in the default configuration; issue #277Florent Xicluna2014-05-294-6/+7
|
* Report E266 instead of E265 when the block common starts with multiple #; ↵Florent Xicluna2014-05-294-10/+41
|\ | | | | | | issue #270
| * Add position to E26 testsFlorent Xicluna2014-04-261-6/+6
| |
| * Report E266 instead of E265 when the block common starts with multiple #; ↵Florent Xicluna2014-04-264-4/+35
| | | | | | | | issue #270
* | Replace codes E111/2/3 with E114/5/6 for indentation of comments; issue #274Florent Xicluna2014-05-296-9/+43
|\ \
| * | Fix testsFlorent Xicluna2014-04-262-3/+3
| | |
| * | Replace codes E111/2/3 with E114/5/6 for indentation of comments; issue #274Florent Xicluna2014-04-264-6/+40
| |/
* | Add changelog entries for E704 and E731Florent Xicluna2014-05-292-1/+9
| |
* | Report E731 for lambda assignment, return E704 for one-liner def instead of ↵Florent Xicluna2014-05-295-14/+41
|\ \ | | | | | | | | | E701; issue #277
| * | Add tests for E731, issue #277Florent Xicluna2014-04-261-0/+7
| | |
| * | Report E731 for lambda assignment, return E704 for one-liner def instead of ↵Florent Xicluna2014-04-264-14/+34
| | | | | | | | | | | | E701; issue #277
* | | Release version 1.5.71.5.7Florent Xicluna2014-05-292-3/+3
| | |
* | | Add Python 3.4 to .travis.ymlFlorent Xicluna2014-05-272-1/+2
| | |
* | | Add changelog entryFlorent Xicluna2014-05-261-0/+2
| | |
* | | Merge pull request #288 from dreadatour/universal-newlineFlorent Xicluna2014-05-261-1/+1
|\ \ \ | | | | | | | | Always open files with universal newline flag; issue #288
| * | | Always open files with universal newline flagVladimir Rudnyh2014-05-101-1/+1
|/ / /
* | | Additional tests for W391Florent Xicluna2014-05-071-1/+10
| | |
* | | Check the last line even if it does not end with a NL; issue #286Florent Xicluna2014-05-073-4/+10
| | |
* | | Do not exit when an option in setup.cfg / tox.ini is not recognizedFlorent Xicluna2014-05-052-4/+6
| | |
* | | Merge pull request #283 from HFulcher/masterFlorent Xicluna2014-04-291-1/+2
|\ \ \ | | | | | | | | Add path of the user configuration on Windows to the documentation; issue #281
| * | | Fixed #281 in docsHuw Fulcher2014-04-291-1/+2
|/ / / | | | | | | Updated the Configuration section of the Intro Documentation to tell Windows users where their .pep8 configuration file is stored.
* | | Merge pull request #280 from lordhellcito/patch-1Florent Xicluna2014-04-291-1/+1
|\ \ \ | |_|/ |/| | The Windows platform does not define signal SIGPIPE
| * | Update pep8.pylordhellcito2014-04-271-1/+1
|/ / | | | | Windows throws an AttributeError exception instead ValueError when calls signal.SIGPIPE.
* | Merge pull request #276 from cgar/trivialFlorent Xicluna2014-04-232-3/+3
|\ \ | |/ |/| few mispelling errors
| * few mispelling errorsCarlos E. Garcia2014-04-232-3/+3
|/
* Return error code 1 on broken pipe, and restore compatibility with Python 2.5Florent Xicluna2014-04-182-5/+17
|
* Merge pull request #275 from winny-/masterFlorent Xicluna2014-04-181-0/+4
|\ | | | | Handle broken pipe in check_files()
| * Handle broken pipe in check_files()Winston Weinert2014-04-181-0/+4
|/ | | | | This way partial output (e.g. "pep8 . | head") doesn't get clobbered with a stacktrace on stderr.
* Fix documentation buildFlorent Xicluna2014-04-141-1/+0
|
* Release version 1.5.61.5.6Florent Xicluna2014-04-142-3/+3
|
* Add total_lines to the developer documentationFlorent Xicluna2014-04-141-1/+2
|
* Merge checker W292 with checker W391 for better performanceFlorent Xicluna2014-04-142-13/+11
|
* Switch two linesFlorent Xicluna2014-04-141-1/+1
|
* Check the last line even if it has not EOL; issue #273Florent Xicluna2014-04-144-9/+29
|
* Release version 1.5.51.5.5Florent Xicluna2014-04-102-3/+3
|
* Create set of tokens for comparison; skip comments completely for E22 checksFlorent Xicluna2014-04-091-22/+15
|
* Fix regression with E22 checks and inline comments; issue #271Florent Xicluna2014-04-093-2/+18
|
* Release version 1.5.41.5.4Florent Xicluna2014-04-072-3/+3
|
* Refactor method build_tokens_lineFlorent Xicluna2014-04-061-19/+13
|
* Fix negative offset with E303 before a multi-line docstring; issue #269Florent Xicluna2014-04-053-8/+25
|
* Back to developmentFlorent Xicluna2014-04-051-10/+6
|
* Release version 1.5.31.5.3Florent Xicluna2014-04-042-2/+2
|
* Fix wrong offset computation when error is on the last char of a physical ↵Florent Xicluna2014-04-043-7/+19
| | | | line; issue #268
* Update Travis configuration, and the wheel badgeFlorent Xicluna2014-04-043-3/+3
|
* Tests should pass for the tarball distributed on PyPI; issue 267Florent Xicluna2014-04-045-11/+15
|
* Release version 1.5.21.5.2Florent Xicluna2014-04-042-4/+4
|
* Do not allow newline after parameter equal; issue #252Florent Xicluna2014-04-043-0/+11
|
* Fix caret position when line contains tabsFlorent Xicluna2014-04-032-1/+3
|
* Report correct line number for E303 with comments; issue #60Florent Xicluna2014-04-033-26/+28
|