summaryrefslogtreecommitdiff
path: root/checkers
Commit message (Expand)AuthorAgeFilesLines
* Other backports from default.cpopa2014-08-242-2/+15
* Backport some changes from default to 1.3.cpopa2014-08-203-33/+81
* Proper handle class level scope for lambdas.cpopa2014-07-291-4/+36
* Fix a false positive with string formatting checker, when using keyword argum...cpopa2014-07-291-5/+11
* Fix a false positive with string formatting checker, when encountering a stri...cpopa2014-07-291-10/+13
* Merged logilab/pylint into defaultClaudiu Popa2014-07-252-23/+20
|\
| * Use the maxversion attribute on some warning instead of checking for the Pyth...Torsten Marek2014-07-251-21/+17
| * Mark 'relative-import' as only being present in Python 2.*.Torsten Marek2014-07-251-2/+3
* | Don't emit 'missing-docstring' when the actual docstring uses `.format`. Clos...cpopa2014-07-251-0/+12
|/
* linting pylintSylvain Th?nault2014-07-2514-409/+399
* Don't emit 'unnecessary-lambda' if the body of the lambda call contains call ...cpopa2014-07-251-0/+5
* Fix a couple of issues in typecheck.py.cpopa2014-07-251-15/+21
* Only emit attribute-defined-outside-init for definition within the same modul...Sylvain Th?nault2014-07-251-1/+5
* Don't emit hidden-method message when the attribute has been monkey-patched,Sylvain Th?nault2014-07-251-3/+7
* [refactor] move handling of file specific state to its own FileState class (m...Sylvain Th?nault2014-07-241-2/+2
* Make pylint compatible with Python 2.5 again, and make all the tests pass (Cl...Torsten Marek2014-07-241-1/+2
* Allow implicitly concatenated strings to align with the previous string part.Torsten Marek2014-07-251-15/+20
* Fix more edge cases in the cell-var-from-loop warning (Closes: #233).Torsten Marek2014-07-251-1/+9
* Don't emit 'pointless-string-statement' for attribute docstrings. Closes issu...cpopa2014-07-241-3/+15
* Restore compatibility with Python 2.6.cpopa2014-07-241-6/+12
* fix issue #203, we should not let ImportError propagate from the import checkerSylvain Th?nault2014-07-231-1/+4
* import modutils from astroid, it has been backported thereSylvain Th?nault2014-07-231-1/+1
* Merged in PCManticore/pylint/metaclass_undefined (pull request #111)Claudiu Popa2014-07-233-7/+11
|\
| * Merged logilab/pylint into defaultClaudiu Popa2014-07-232-7/+5
| |\
| | * stop having ASTWalker as BaseChecker base class, it's not used anymore (and f...Sylvain Th?nault2014-07-231-3/+1
| | * Don't use set comprehension.cpopa2014-07-231-4/+4
| * | Don't emit 'unused-variable' when assigning to a nonlocal. Closes issue #275.cpopa2014-07-231-0/+6
| |/
* | Remove check_messages, so that leave_module can be called if 'undefined-vari...cpopa2014-07-231-1/+0
* | Merge with default.cpopa2014-07-227-63/+672
|\ \ | |/
| * Definition order is considered for classes, function arguments and annotation...cpopa2014-07-211-1/+66
| * Fix an 'unused-variable' false positive, where the variable is assigned throu...cpopa2014-07-171-1/+41
| * Don't emit 'no-name-in-module' for ignored modules. Closes issue #223.cpopa2014-07-121-1/+7
| * Add 'assigning-non-slot' warning, which detects assignments to attributes not...cpopa2014-07-101-1/+32
| * Fix a false positive regarding W0511. Closes issue #149.Alexandru Coman2014-07-091-2/+2
| * Code refactoring.Alexandru Coman2014-07-091-7/+6
| * Fixing Issue #149 (W0511 false positive)Alexandru Coman2014-07-091-14/+18
| * Merge upstream default into list-index-checkerDavid Shea2014-07-081-0/+128
| |\
| | * Move the sequence_types set to the global levelDavid Shea2014-07-081-3/+4
| | * Skip the check for whether node is a Slice in visit_slice.David Shea2014-07-081-3/+0
| | * Fix a typo in a commentDavid Shea2014-07-081-1/+1
| | * Skip sequence index checks on types that do not resolve to an Instance or aDavid Shea2014-07-081-1/+1
| | * Correct problems with checking extended slice syntax.David Shea2014-07-071-2/+14
| | * Correct the sequence index check for set and delete operations.David Shea2014-07-071-11/+22
| | * Correct the use of root()David Shea2014-07-071-1/+1
| | * Clean up some stylistic issues in the sequence and slice index type checks.David Shea2014-07-071-14/+9
| | * Expand the description for invalid-sequence-index to match the check.David Shea2014-07-071-1/+2
| | * Remove the types import since it is no longer usedDavid Shea2014-07-061-1/+0
| | * Merge upstream default into list-index-checkerDavid Shea2014-07-061-0/+112
| | |\
| | | * Check for invalid indices used with subclasses of sequence types.David Shea2014-07-061-4/+25
| | | * Expand and correct the types used in the index and slice checks.David Shea2014-07-061-22/+40