summaryrefslogtreecommitdiff
path: root/pylint/checkers
Commit message (Expand)AuthorAgeFilesLines
...
| * Remove trailing whitespaces and other pylint related issues.Claudiu Popa2015-08-252-6/+6
| * Update pylint to use the new astroid AST names and methodsClaudiu Popa2015-08-2512-199/+195
| * Merged in renezhang/pylint_raise_error (pull request #267)Claudiu Popa2015-08-211-1/+1
| |\
| | * More idiomatic pythonRene Zhang2015-08-211-2/+1
| | * Fix index out of range when handling raise()Rene Zhang2015-08-201-1/+2
| * | Fix inference error on string formatRene Zhang2015-08-201-0/+2
| |/
* | Fix crash when handling generator inside with contextRene Zhang2015-08-201-3/+4
|/
* Mention that the option is obsoleted.Claudiu Popa2015-08-201-1/+2
* missing-reversed-argument was removed.Claudiu Popa2015-08-201-6/+2
* missing-module-attribute was removed and the corresponding CLI option, requir...Claudiu Popa2015-08-201-14/+4
* Merged in The-Compiler/pylint/no-logilab-common (pull request #264)Claudiu Popa2015-08-183-4/+3
|\
| * Get rid of logilab.common.graph.no-logilab-commonFlorian Bruhin2015-07-261-1/+1
| * Get rid of logilab.common.compat.Florian Bruhin2015-07-262-3/+2
* | Import the context from astroid.context, not astroid.basesClaudiu Popa2015-08-121-1/+2
* | The --zope flag is deprecated and it is slated for removal in Pylint 1.6.Claudiu Popa2015-08-111-7/+10
* | Handle additional keyword arguments when checking for unnecessary-lambdas.Claudiu Popa2015-08-092-2/+9
* | Use the new CallFunc.keywords instead of filtering out Keyword from CallFunc....Claudiu Popa2015-08-085-38/+29
* | Remove trailing whitespace.Claudiu Popa2015-08-021-1/+1
* | Add a new error, 'continue-in-finally'.Claudiu Popa2015-08-021-2/+10
* | Improved the not-in-loop checker to properly detect more cases.Claudiu Popa2015-08-021-2/+7
* | Merged in harut/pylint (pull request #261)Claudiu Popa2015-07-301-16/+2
|\ \
| * | Remove unused argument.Claudiu Popa2015-07-261-2/+2
| * | Remove metaclass specific logic in _emit_no_member, which is already handled ...Claudiu Popa2015-07-261-14/+0
* | | add a no-space-check option for empty linesHarut2015-07-251-5/+14
|/ /
* | help fix for no-space-check optionHarut2015-07-251-1/+3
|/
* Don't emit no-init if not all the bases from a class are known.Claudiu Popa2015-07-221-1/+1
* Remove unused variable.Claudiu Popa2015-07-161-1/+0
* Fix a typo.Claudiu Popa2015-07-161-1/+1
* Improve detection of relative imports in non-packages, as well as importing m...Claudiu Popa2015-07-142-4/+22
* Get the ignored modules only once and save the result in the imports checker.Claudiu Popa2015-07-141-3/+4
* Fix the previous commit, only ignored-modules should use patterns, not ignore...Claudiu Popa2015-07-081-19/+32
* ignored-classes option can work with qualified names, as well as with Unix pa...Claudiu Popa2015-07-071-9/+25
* Remove trailing whitespace.Claudiu Popa2015-07-061-1/+1
* Fix a not-context-manager false positive.Claudiu Popa2015-07-061-5/+36
* Use safe_infer and has_known_bases from astroid.helpers. Closes issue #593.Claudiu Popa2015-07-0610-86/+61
* Add a new error, 'nonlocal-and-global'.Claudiu Popa2015-07-061-1/+21
* Simplify error_of_type by using ExceptHandler.catch.Claudiu Popa2015-07-051-18/+1
* Enable misplaced-future for Python 3. Closes issue #580.Claudiu Popa2015-07-031-2/+1
* Ignore mixin classes when emitting not-context-manager, to avoid false positi...Claudiu Popa2015-07-031-0/+5
* Disable for unsupported-binary-operationClaudiu Popa2015-07-021-2/+2
* Add a new error, 'unsupported-binary-operation'.Claudiu Popa2015-06-301-0/+20
* Rename F0401 (import-error) to E0401 as it is not a fatal pylint errorrename-F0401-to-E0401Noam Yorav-Raphael2015-06-291-3/+4
* Move the property into a private function and call it in Checker.open.Claudiu Popa2015-06-261-10/+12
* Remove deque specialized code, since it is already handled by astroid.Claudiu Popa2015-06-261-5/+0
* Verify explicitly that a class is not a known exception class.Claudiu Popa2015-06-261-2/+16
* Add a new error, 'star-needs-assignment-target'.Claudiu Popa2015-06-261-2/+17
* Add a new error for the Python 3 porting checker, `import-star-module-level`.Claudiu Popa2015-06-251-1/+9
* Detect a couple of objects which can't be base classes (bool, slice, range an...Claudiu Popa2015-06-251-1/+8
* Add a new error, 'invalid-star-assignment-target'.Claudiu Popa2015-06-251-1/+11
* Add a new error, 'too-many-star-expressions'.Claudiu Popa2015-06-251-0/+11