summaryrefslogtreecommitdiff
path: root/pylint
Commit message (Expand)AuthorAgeFilesLines
* Merged in harut/pylint (pull request #261)Claudiu Popa2015-07-302-8/+24
|\
| * add a no-space-check option for empty linesHarut2015-07-252-8/+24
* | 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
|/
* help fix for no-space-check optionHarut2015-07-251-1/+3
* Use a context manager for fake home directories.Florian Bruhin2015-07-251-37/+27
* Fix tests when $HOME is unset in the environment.Florian Bruhin2015-07-251-6/+15
* Don't emit no-init if not all the bases from a class are known.Claudiu Popa2015-07-222-2/+7
* 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-148-9/+35
* Get the ignored modules only once and save the result in the imports checker.Claudiu Popa2015-07-141-3/+4
* Make a test less stricter by checking that only one message line is expected.Claudiu Popa2015-07-141-7/+2
* Cleanup some tests.Claudiu Popa2015-07-133-16/+35
* Update pylint to use the new astroid.parse, not testutils.build_module.Claudiu Popa2015-07-138-22/+29
* Fix the previous commit, only ignored-modules should use patterns, not ignore...Claudiu Popa2015-07-082-35/+58
* ignored-classes option can work with qualified names, as well as with Unix pa...Claudiu Popa2015-07-072-9/+66
* Remove trailing whitespace.Claudiu Popa2015-07-061-1/+1
* Fix a not-context-manager false positive.Claudiu Popa2015-07-063-5/+62
* Use safe_infer and has_known_bases from astroid.helpers. Closes issue #593.Claudiu Popa2015-07-0610-86/+61
* We understand namedtuple._replace properly (in a static analysis sense of cou...Claudiu Popa2015-07-061-2/+1
* Add a new error, 'nonlocal-and-global'.Claudiu Popa2015-07-064-1/+36
* Simplify error_of_type by using ExceptHandler.catch.Claudiu Popa2015-07-052-18/+4
* Enable misplaced-future for Python 3. Closes issue #580.Claudiu Popa2015-07-035-6/+11
* Ignore mixin classes when emitting not-context-manager, to avoid false positi...Claudiu Popa2015-07-032-0/+17
* Fix failing test, due to how tox (or drone.io) works: there are multiple copi...Claudiu Popa2015-07-031-10/+2
* Fix bad whitespace.Claudiu Popa2015-07-031-1/+1
* New imported features from astroid into pyreverse.Claudiu Popa2015-07-036-21/+194
* Remove a couple of faulty testsClaudiu Popa2015-07-023-16/+6
* Disable for unsupported-binary-operationClaudiu Popa2015-07-022-2/+4
* Stop using logilab.common.__pkginfo__Julien Cristau2015-06-301-1/+1
* Add test for issue #523, which was solved in astroid. Closes issue #523.Claudiu Popa2015-06-302-1/+16
* Add a new error, 'unsupported-binary-operation'.Claudiu Popa2015-06-306-11/+111
* Rename F0401 (import-error) to E0401 as it is not a fatal pylint errorNoam Yorav-Raphael2015-06-294-8/+8
* Add tests for understanding constructors after a type() call.Claudiu Popa2015-06-272-1/+19
* Move the property into a private function and call it in Checker.open.Claudiu Popa2015-06-261-10/+12
* Add tests for checking that calling constructors from class methods with inva...Claudiu Popa2015-06-262-0/+24
* 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-263-3/+34
* Add a new error, 'star-needs-assignment-target'.Claudiu Popa2015-06-264-2/+24
* Add a new error for the Python 3 porting checker, `import-star-module-level`.Claudiu Popa2015-06-252-1/+19
* Detect a couple of objects which can't be base classes (bool, slice, range an...Claudiu Popa2015-06-253-2/+29
* Add a new error, 'invalid-star-assignment-target'.Claudiu Popa2015-06-254-1/+18
* Add a new error, 'too-many-star-expressions'.Claudiu Popa2015-06-254-0/+18
* yield-outside-func is also emitted for `yield from`.Claudiu Popa2015-06-254-2/+16
* Add tests for checking the ability to understand one-argument type builtin.Claudiu Popa2015-06-242-2/+8
* Disable not-callable because NotImplemented is inferred correctly now (and we...Claudiu Popa2015-06-231-1/+1
* Add the new __matmul__ and __rmatmul__ dunder methods to the list of known sp...Claudiu Popa2015-06-211-1/+2
* Move the code which checks undefined-all-variable into a new private function.Claudiu Popa2015-06-201-40/+47
* Don't emit undefined-all-variable for nodes which can't be inferred (which re...Claudiu Popa2015-06-205-10/+11