summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Do not skip physical checks if the newline is escaped; issue #319issue319Florent Xicluna2014-12-184-8/+22
|
* Merge pull request #354 from jcrocholl/feature292Ian Lee2014-12-183-7/+9
|\ | | | | Looks good!
| * Do not enforce whitespaces around ** operator; issue #292feature292Florent Xicluna2014-12-163-7/+9
| |
* | Merge branch fixing issues #330 and #336Florent Xicluna2014-12-173-11/+24
|\ \
| * | Fix false positive E713; issue #330issue336Florent Xicluna2014-12-163-2/+12
| | |
| * | Fix false positive E711/E712; issue #336Florent Xicluna2014-12-163-10/+13
| |/
* | Merge pull request #356 from jcrocholl/test-pypy3Ian Lee2014-12-161-0/+2
|\ \ | | | | | | Add tests on PyPy 3 for Travis-CI
| * | Add tests on PyPy 3 for Travis-CItest-pypy3Florent Xicluna2014-12-171-0/+2
|/ /
* | Add changelog entry for #323Florent Xicluna2014-12-171-0/+3
| |
* | Merge branch 'issue-323'Florent Xicluna2014-12-172-1/+6
|\ \ | |/ |/|
| * This appears to fix #323Ian Cordasco2014-12-171-1/+1
| | | | | | | | I am very skeptical of this though
| * Add failing test for #323Ian Cordasco2014-12-171-0/+5
|/
* Update changelog for issue #297Ian Lee2014-12-161-0/+2
|
* Catch import errors thrown by os.path.expanduser(); issue #297Ian Lee2014-12-161-5/+9
| | | | * This can happen particularly with AppEngine when importing pwd
* Add toplevel build dir to git ignore fileIan Lee2014-12-161-0/+1
|
* Fix definition of isidentifier in Python 2Florent Xicluna2014-12-161-1/+1
|
* Fix too long line introducing E501 errorIan Lee2014-12-151-1/+2
|
* Replace the IDENTIFIER_REGEX with the isidentifier functionFlorent Xicluna2014-12-162-8/+8
|
* Merge pull request #312 from sigmavirus24/bug/311Florent Xicluna2014-12-162-1/+15
|\ | | | | Fix #311. Add regex to check for field assignment
| * Update fix for E731Ian Cordasco2014-08-082-2/+10
| | | | | | | | Thanks to @mypalmike for thinking of the extra cases
| * Fix #311. Add regex to check for field assignmentIan Cordasco2014-08-072-1/+7
| |
* | TestCase.assertEqual is the recommended spellingFlorent Xicluna2014-12-151-11/+11
| |
* | Review changelogFlorent Xicluna2014-12-151-4/+6
| |
* | Remove noise from testsuite/E12not.pyFlorent Xicluna2014-12-151-2/+0
| |
* | Merge branch 'issue304'Ian Lee2014-12-145-1/+67
|\ \
| * | Rename check to signify that it applies to module level imports only; issue #304Ian Lee2014-12-141-1/+2
| | |
| * | Add error code E402 to docs; issue #304Ian Lee2014-12-141-0/+2
| | |
| * | Merge remote-tracking branch 'yole/import-on-top-of-file' into issue304Ian Lee2014-12-144-1/+64
| |\ \ |/ / /
| * | Report E402 for imports not on top of file; issue #264. Also add ability to ↵Dmitry Jemerov2014-07-244-1/+64
| |/ | | | | | | keep local state for each checker plugin. #ep14boat
* | Add changelog for #335Ian Lee2014-12-131-0/+2
| |
* | Merge pull request #340 from bdkearns/masterIan Lee2014-12-132-2/+4
|\ \ | | | | | | Merged, thanks!
| * | add .tox to DEFAULT_EXCLUDEBrian Kearns2014-10-232-2/+4
| |/
* | Merge pull request #347 from helenst/e711-reverse-comparisonIan Lee2014-12-132-4/+29
|\ \ | | | | | | Looks good, thanks!
| * | Fixed operator check for E711/E712 (Ref #307)Helen ST2014-12-111-1/+1
| | |
| * | E711 / E712 checks test for None != arg and False == argHelen ST2014-12-112-4/+29
| |/ | | | | | | (Fixes #307)
* | Merge branch 'issue306'Ian Lee2014-12-133-0/+44
|\ \
| * | Remove stdout check that fails under pypy.Ian Lee2014-12-131-8/+1
| | | | | | | | | | | | | | | This second E901 error actually only shows up in the test framework and does not happen if you run the code within the Python interpreter.
| * | Don't crash if build_tokens_line() returns None; issue #306Ian Lee2014-12-133-0/+51
| | |
* | | Email notificates when Travis runsIan Lee2014-12-131-0/+4
|/ /
* | Dont need to make a sphinx table header explicitly boldIan Lee2014-12-131-2/+2
| |
* | Add documentation for ``--format`` (#198 / #310)Ian Lee2014-12-131-0/+2
| |
* | Merge pull request #310 from ilam/featuredocIan Lee2014-12-131-0/+27
|\ \ | | | | | | Looks good, thanks @ilam
| * | Fixed the formatting in the tableIlambharathi Kanniah2014-07-311-1/+1
| | |
| * | Added variables table for clarityIlambharathi Kanniah2014-07-311-0/+16
| | |
| * | Corrected some formattingIlambharathi Kanniah2014-07-311-2/+3
| | |
| * | #198 --feature doc updated.Ilambharathi Kanniah2014-07-311-0/+10
| |/
* | Merge branch 'willkg:normalize_path_fix'Ian Lee2014-12-134-2/+31
|\ \ | | | | | | | | | Pull request #343, Issues #339 / #343
| * | Update changelog for issue #339 / #343Ian Lee2014-12-131-0/+4
| | |
| * | Add a few more cases of "not value"Ian Lee2014-12-131-0/+3
| | |
| * | Fix normalize_paths to allow whitespaceWill Kahn-Greene2014-11-063-2/+26
| |/ | | | | | | | | | | | | | | | | | | | | | | | | This fixes normalize_paths so that it strips whitespace before and after paths before working on them. This allows you to do specify excludes with multiple lines in the config file. This also tweaks normalize_paths so that the behavior matches the docstring. This also adds tests. Fixes #339