summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #616 from sigmavirus24/release/2.32.3.0Ian Cordasco2017-01-282-1/+17
|\ | | | | Prepare 2.3.0 release
| * Prepare 2.3.0 releaseIan Cordasco2017-01-272-1/+17
|/
* Merge pull request #613 from sigmavirus24/pr/523Ian Cordasco2017-01-252-1/+12
|\ | | | | Allow all dunder variables above imports
| * Allow all dunder variables above importsSimon Gomizelj2017-01-252-1/+12
|/ | | | Closes #394
* Merge pull request #541 from sigmavirus24/use-tox-with-travisIan Cordasco2017-01-252-18/+29
|\ | | | | Switch Travis to use tox
| * Switch Travis to use toxIan Cordasco2017-01-252-18/+29
|/ | | | | | | | | | This reduces confusion about how travis runs tests versus a local developer. Unfortunately, pypy3 on Travis is stuck to a version that only implements Python 3.2. There is no convenient work around for that version so we remove it from our matrix until Travis updates their images.
* Merge pull request #610 from khairihafsham/e306-docIan Cordasco2017-01-241-0/+1
|\ | | | | added function doc to blank_lines() for E306
| * modified pycodestyle.pyKhairi Hafsham2017-01-161-0/+1
| | | | | | | | added function doc to blank_lines() for E306
* | Don't report E701 for variable annotations (#612)Anthony Sottile2017-01-243-2/+25
| |
* | Report E704 for async def as well (#611)Anthony Sottile2017-01-244-3/+20
|/ | | | Fix detection of 'async def' (with multiple spaces) so that it also reports E704
* Merge pull request #592 from rogalski/bare-exceptIan Cordasco2017-01-016-4/+53
|\ | | | | Warn about bare except clause
| * warn about bare except clauseŁukasz Rogalski2016-12-286-4/+53
|/
* Prevent E305 on variable names `class*` and `def*`Parth Laxmikant Kolekar2016-11-211-0/+4
| | | | | | | Prevent lines like classification_error = 0 From becoming treated as a class.
* Tagged release of 2.2.02.2.0Ian Lee2016-11-142-1/+12
| | | | Signed-off-by: Ian Lee <IanLee1521@gmail.com>
* Added Makefile to handle proper permissions in releasesIan Lee2016-11-141-0/+3
|
* Fixed CHANGELOG release date for v2.1.0Ian Lee2016-11-141-1/+1
|
* Merge pull request #595 from spaceone/patch-1Ian Lee2016-11-081-0/+2
|\ | | | | Add E306 to docs
| * Add E306 to docs⁣ Florian Best2016-11-081-0/+2
| |
* | Merge pull request #593 from markpeek/markpeek-E305fixIan Cordasco2016-11-071-1/+3
|\ \ | |/ |/| Fix E305 regression in 2.1.0 due to fix for #400
| * Fix E305 regression in 2.1.0 due to fix for #400Mark Peek2016-11-061-1/+3
|/
* Bump versin number post releaseIan Lee2016-11-041-1/+1
|
* Tagged release of 2.1.02.1.0Ian Lee2016-11-041-1/+1
| | | | Signed-off-by: Ian Lee <IanLee1521@gmail.com>
* Added missing word to instructionsIan Lee2016-11-041-1/+1
|
* Made RTD badge point to base, and use SSLIan Lee2016-11-041-1/+1
|
* Added RTD Badge to READMEIan Lee2016-11-041-0/+4
|
* Moved build badges to top of READMEIan Lee2016-11-041-8/+8
|
* Updated changelog for #591Ian Lee2016-11-041-0/+1
|
* Merge pull request #591 from daspecster/support-pep8-pycodestyle-configIan Lee2016-11-031-7/+15
|\ | | | | Check for both [pep8] and [pycodestyle] config sections.
| * Check for both [pep8] and [pycodestyle] config sections.Thomas Schultz2016-11-031-7/+15
|/
* Fixed line wrapping in CHANGELOGIan Lee2016-09-291-4/+7
|
* Merge pull request #574 from daspecster/prepare-2.1.0-changelogIan Cordasco2016-09-211-5/+13
|\ | | | | Update CHANGES.txt for 2.1.0 release.
| * Update tested python version notes.Thomas Schultz2016-09-211-1/+1
| |
| * Updated changelog from feedback.Thomas Schultz2016-09-211-16/+5
| |
| * Update CHANGES.txt for 2.1.0 release.Thomas Schultz2016-09-181-5/+24
| |
* | Merge pull request #555 from memeplex/masterIan Cordasco2016-08-112-2/+38
|\ \ | | | | | | Special case for nested functions and classes (fixes #28)
| * | Improve error message and add some commentsmemeplex2016-06-281-2/+3
| | |
| * | Special case for nested functions an classes (fixes #28)memeplex2016-06-282-2/+37
| | |
* | | Merge pull request #566 from daspecster/update-contributing-rstIan Cordasco2016-08-021-3/+71
|\ \ \ | |_|/ |/| | Add contributing instructions.
| * | Feedback changes. Typos and capitalization.Thomas Schultz2016-08-021-7/+7
| | | | | | | | | | | | Fix GitHub capitalization.
| * | Add contributing instructions.Thomas Schultz2016-08-021-2/+70
| | |
* | | Merge pull request #562 from sigmavirus24/bug/561Ian Lee2016-07-241-4/+3
|\ \ \ | |/ / | | | Stop checking for string option type
| * | Stop checking for string option typeIan Cordasco2016-07-241-4/+3
|/ / | | | | | | | | | | | | | | There's no need to explicitly check for a string type when parsing the configuration file. When it's neither an integer or a boolean, the only value it can logically be is string-like. Closes gh-561
* | Merge pull request #557 from gitter-badger/gitter-badgeIan Lee2016-07-021-0/+4
|\ \ | | | | | | Add a Gitter chat badge to README.rst
| * | Add Gitter badgeThe Gitter Badger2016-07-031-0/+4
|/ /
* | Merge pull request #556 from markpeek/markpeek-async-defIan Lee2016-07-012-1/+9
|\ \ | |/ |/| Report E302 for blank lines before an "async def"
| * Report E302 for blank lines before an "async def"Mark Peek2016-07-012-1/+9
|/
* 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