summaryrefslogtreecommitdiff
path: root/pylint/test/input
Commit message (Collapse)AuthorAgeFilesLines
* check if the type of a variable is redefined (at a function, class or module ↵Laura M?dioni2015-10-301-1/+1
| | | | | | scope) related to issue #674
* Fix some docstrings and the Python 3 testsClaudiu Popa2015-11-251-1/+1
|
* Check imports are located at the top of the module (right after docstring ↵Laura M?dioni2015-11-1014-21/+24
| | | | | | and comments) related to issue #692
* Check imports are ordered (standard, 3rd party, local) and grouped by packageLaura M?dioni2015-11-092-2/+2
| | | | related to issue #692
* check for static methods declared without a decoratorLaura M?dioni2015-10-292-2/+2
| | | | closes issue #675
* check for class methods declared without a decoratorLaura M?dioni2015-10-292-0/+2
| | | | related to the issue #675
* Make misplaced-comparison-constant a convention, rather than a warning.Claudiu Popa2015-10-261-1/+1
|
* add a new rule looking for yoda conditionsLaura M?dioni2015-10-151-1/+1
|
* Port more old tests to the new style tests and remove obsolete tests.Claudiu Popa2015-10-126-201/+0
|
* Port more old tests to the new style tests and remove obsolete tests.Claudiu Popa2015-10-0314-194/+0
|
* Port more old style tests to new style tests.Claudiu Popa2015-10-015-171/+0
|
* Port more tests to the new test format.Claudiu Popa2015-09-307-134/+0
|
* Fix the tests.Claudiu Popa2015-09-291-2/+2
|
* Port some old style tests to new style tests.Claudiu Popa2015-09-295-1116/+0
|
* Fix tests and use all the inference results when checking for bad-open-mode ↵Claudiu Popa2015-09-211-2/+2
| | | | and deprecated-method
* missing-module-attribute was removed and the corresponding CLI option, ↵Claudiu Popa2015-08-204-4/+3
| | | | required-attributes, is slated for removal in Pylint 1.6.
* Merged in The-Compiler/pylint/no-logilab-common (pull request #264)Claudiu Popa2015-08-181-8/+0
|\ | | | | | | [WIP] Get rid of logilab.common
| * Remove dead test file.Florian Bruhin2015-07-261-8/+0
| | | | | | | | This also removes the need for logilab.common.deprecation.
* | Improved the not-in-loop checker to properly detect more cases.Claudiu Popa2015-08-021-14/+0
|/
* Enable misplaced-future for Python 3. Closes issue #580.Claudiu Popa2015-07-031-1/+1
|
* Add a new error, 'unsupported-binary-operation'.Claudiu Popa2015-06-303-11/+11
| | | | | | This error is emitted when two a binary arithmetic operation is executed between two objects which don't support it (a number plus a string for instance).
* arguments-differ understand differences between various type of functions.Claudiu Popa2015-06-141-38/+0
| | | | | This patch improves the way how arguments-differ understands the differences between classmethods, staticmethods and properties. Closes issue #548.
* Add functional test for the func_tokenize_error, handling Jython as well.Claudiu Popa2015-05-241-6/+0
|
* Add a new warning, 'using-constant-test'.Claudiu Popa2015-05-239-10/+10
| | | | | | This new warning is emitted when a conditional statement (If, IfExp) uses a test which is always constant, such as numbers, classes, functions etc. This is most likely an error from the user's part. Closes issue #524.
* Port attribute-defined-outside-init to the new test style format.Claudiu Popa2015-05-111-73/+0
|
* Port access-member-before-definition test to the new test style.Claudiu Popa2015-05-111-33/+0
|
* Remove the import_syntax_error test.Claudiu Popa2015-05-091-2/+0
|
* Port syntax-error test to the new test framework, add test for Jython.Claudiu Popa2015-05-081-1/+0
|
* Use the new style tests for deprecated-modules. Remove stringprep from the ↵Claudiu Popa2015-05-082-24/+0
| | | | list of deprecated modules for Python 3.
* Remove the keyword repeated check (not reliable on other implementations, ↵Claudiu Popa2015-05-081-11/+0
| | | | syntax error already handled by other tests)
* Remove the rest of interface checks.Claudiu Popa2015-05-052-132/+0
| | | | | | | The removed checks are interface-is-not-class, missing-interface-method, unresolved-interface. The reason is that its better to start recommending ABCs instead of the old Zope era of interfaces.
* Remove interface-not-implemented warning. Closes issue #532.Claudiu Popa2015-05-052-5/+2
|
* Add Changelog entry and cleanup after changeset 2307df9Claudiu Popa2015-03-311-16/+0
|
* Remove "pointless-except" checkerSteven Myint2015-03-301-1/+1
| | | | This fixes #506.
* Fix failing test.Claudiu Popa2015-03-281-2/+2
|
* Port more tests from the old test style to the new test style.Claudiu Popa2015-03-2827-950/+0
|
* Fix some tests for the drone.io.Claudiu Popa2015-03-263-3/+3
|
* Finish converting tests to work both on Python 2 and 3. Also, drop 2to3 for ↵Claudiu Popa2015-03-264-15/+16
| | | | tests.
* Don't emit an unused-wildcard-import for imported __future__ names from ↵Claudiu Popa2015-03-261-1/+0
| | | | other modules.
* Try to make the tests compatible with both Python 2 and Python 3.Claudiu Popa2015-03-2639-246/+233
|
* Disable irrelevant checkSteven Myint2015-03-141-1/+1
|
* Remove abstract-class-not-used, for the same reasons as star-args and ↵Claudiu Popa2015-03-112-16/+1
| | | | abstract-class-little-referenced.
* Remove abstract-class-little-used warning, since it doesn't add any real value.Claudiu Popa2015-03-113-23/+2
|
* Remove the star-args error.Claudiu Popa2015-03-111-18/+0
| | | | | This warning is removed because it doesn't add any real value and it's not a problem if someone uses unpacking in their code.
* Move all package files to a pylint package.Ionel Cristian Maries2015-02-14183-0/+6212