summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixed all but the last test casegh-502Ian Lee2016-06-252-4/+7
|
* Fixed doctest cases and improved binary helper functionIan Lee2016-06-252-18/+24
|
* Added W504 code to docsIan Lee2016-06-251-4/+6
|
* Updated testsuite cases for #502Ian Lee2016-06-252-28/+23
|
* Add W504 for line breaks before binary operatorsIan Cordasco2016-06-253-49/+99
| | | | | | This flips the W503 rule to enforce line breaks before binary operators. Related #498
* Updated tox to do same tests as Travis CIIan Lee2016-06-251-1/+1
|
* Removed test code unrelated to utf-8 checksIan Lee2016-06-251-17/+0
|
* Merge branch 'gh-536'Ian Lee2016-06-259-1/+80
|\ | | | | | | Closes #400, Closes #402, Closes #536
| * Added test case based on @gvanrossum commentIan Lee2016-06-251-0/+11
| | | | | | | | https://github.com/PyCQA/pycodestyle/issues/400\#issue-66790880
| * Updated checker variable based on conversation in #536Ian Lee2016-06-251-5/+5
| |
| * Added extra Okay example to test againstIan Lee2016-06-251-0/+19
| |
| * Fixed placement of changelog entryIan Lee2016-06-251-1/+1
| |
| * Fix issue #400: Require two blank lines after toplevel def, classNikhil Benesch2016-06-258-1/+50
|/
* Updated changelog with 2.1 milestone changesIan Lee2016-06-251-0/+3
|
* Updated rename note in READMEIan Lee2016-06-251-2/+6
|
* Updated to use sheilds.io badgesIan Lee2016-06-251-2/+2
|
* Updated text about running tests with tox; Closes #552Ian Lee2016-06-251-2/+1
|
* Merge pull request #539 from sigmavirus24/max-line-length-noqaIan Lee2016-06-071-2/+4
|\ | | | | Update maximum_line_length to use Checker.noqa
| * Update maximum_line_length to use Checker.noqaIan Cordasco2016-06-071-2/+4
| | | | | | | | | | | | | | | | This also updates the Checker to update it's state for physical lines as well as logical lines. This allows maximum_line_length to rely on Checker state for its noqa check. Closes #538
* | Merge pull request #540 from sigmavirus24/remove-warningsIan Cordasco2016-06-071-3/+0
|\ \ | |/ |/| Remove unused imports and assignments
| * Remove unused imports and assignmentsIan Cordasco2016-06-071-3/+0
|/ | | | | | Neither the warnings modules, nor the two local assignments in pycodestyle's newest check were being used. This removes them and fixes pyflakes errors raised as a result.
* Updated changelog to specify changes in 2.1.0Ian Lee2016-06-061-1/+7
|
* Merge pull request #525 from mtmiller/issue341Ian Lee2016-06-063-1/+62
|\ | | | | Detect single letter variable names enumerated in PEP-0008
| * Report E742 and E743 for badly named functions and classesMike Miller2016-06-032-2/+17
| |
| * Also report E741 on 'global' and 'nonlocal' statementsMike Miller2016-06-031-2/+2
| |
| * Add more doctests for E741Mike Miller2016-06-021-0/+12
| |
| * Report E741 for prohibited single-letter variablesMike Miller2016-06-023-0/+34
| | | | | | | | | | | | | | Check for prohibited identifiers occuring to the lhs of an assignment operator or after the 'as' keyword. Closes #341
| * Never use 'l' (lowercase letter el) as a variable nameMike Miller2016-06-021-1/+1
| |
* | Updated version number of next release to 2.1.0Ian Lee2016-06-061-1/+1
| |
* | Updated Travis CI doc linkIan Lee2016-06-061-1/+1
| |
* | Updated docs related to tested Python versionsIan Lee2016-06-061-2/+2
| |
* | Added passing test case related to #376Ian Lee2016-06-061-1/+5
| | | | | | | | | | This test passes currently, but would need to be updated if the functionality changes.
* | Fixed wrapping of text in developer.rstIan Lee2016-06-061-1/+2
| |
* | Added skip missing interpreters flag to tox configIan Lee2016-06-061-0/+1
| |
* | Updated developer documentation for testingIan Lee2016-06-063-5/+8
| | | | | | | | This builds upon and closes #533
* | Add test-requirements.txt with basic test packagesSusan Tan2016-06-062-0/+8
| |
* | Reverted a few spelling changesIan Lee2016-06-062-2/+2
| | | | | | | | | | | | Based on feedback on pull request #534 on GitHub Closes #534
* | Fix typosSusan Tan2016-06-062-3/+3
| |
* | Re-ordered package imports alphabeticallyIan Lee2016-06-061-4/+6
| |
* | Bumped version number post releaseIan Lee2016-06-061-1/+1
| |
* | Merge pull request #532 from mtmiller/doc-updateIan Lee2016-06-061-1/+1
|\ \ | | | | | | Update Python version list in docs
| * | Update Python version list in docsMike Miller2016-06-031-1/+1
| | |
* | | Merge pull request #530 from iamaspacecow/pycodestyle-name-changeIan Lee2016-06-066-43/+48
|\ \ \ | |/ / |/| | Change all references to the pep8 project to say pycodestyle
| * | Change all references to the pep8 project to say pycodestyleMaxPayton2016-06-036-43/+48
|/ / | | | | | | | | | | | | | | This fixes issue #518, pep8 still referenced in the cli help command As a side effect, `[pep8]` in setup.cfg now becomes `[pycodestyle]` Also, changed the path for the config file from ~/.config/pep8 to ~/.config/pycodestyle These feel like changes that should have come with the jump to version 2.0.0, as they are breaking, but support for as a name can still be added if it's desired enough
* | Merge pull request #522 from arthall/issue-314Ian Lee2016-06-021-6/+19
|\ \ | |/ |/| Updated pull request #314 to current master.
| * Modified patch for issue #314 so tests in E73.py passArt Hall2016-06-021-2/+6
| |
| * Merge latest master into issue-314Art Hall2016-06-0230-516/+968
| |\
| * | Fixing compound_statement not to be quadratic in # of :sissue-314Darioush Jalalinasab2014-12-181-11/+18
| | |
* | | Merge pull request #520 from kjcole/masterIan Lee2016-06-021-0/+1
|\ \ \ | |_|/ |/| | - Added venv/ (virtualenv) to list of git ignored filename patterns
| * | - Added venv/ (virtualenv) to list of git ignored filename patternsKevin Cole2016-06-021-0/+1
|/ /