summaryrefslogtreecommitdiff
path: root/checkers/base.py
Commit message (Expand)AuthorAgeFilesLines
* Change basestring to six.string_typesBrett Cannon2014-08-291-1/+1
* Fix a incorrect use of sys.maxint by using sys.maxsizeBrett Cannon2014-08-291-1/+1
* Modernize to the point of working for Python 2.7 stillBrett Cannon2014-08-291-9/+11
* Implement confidence levels.Torsten Marek2014-07-241-16/+30
* Change the multi-style name checker from first-style-wins to majority-style-w...Torsten Marek2014-07-241-10/+34
* Don't emit 'invalid-name' when assigning a name in an ImportError handler. Cl...cpopa2014-08-091-2/+27
* Revert change.cpopa2014-08-081-1/+1
* Cleanup.cpopa2014-08-081-11/+14
* Converted more test cases.Torsten Marek2014-07-301-1/+1
* [refs #282] A previous failed merge meant the fixes got applied to a very old...carl2014-07-291-247/+423
* [refs #282] Various improvements based on feedback on pull-request #138carl2014-07-291-430/+256
* [refs #282] dangerous-default-values are now not evaluated to get their type/...carl2014-07-271-4/+16
* Don't emit 'missing-docstring' when the actual docstring uses `.format`. Clos...cpopa2014-07-251-0/+12
* linting pylintSylvain Th?nault2014-07-251-207/+200
* Don't emit 'unnecessary-lambda' if the body of the lambda call contains call ...cpopa2014-07-251-0/+5
* Don't emit 'pointless-string-statement' for attribute docstrings. Closes issu...cpopa2014-07-241-3/+15
* Fix a potential AttributeError when checking for `reversed` arguments.cpopa2014-04-251-5/+8
* Fix Python < 2.7 compatibility.cpopa2014-04-141-1/+1
* Make it possible to show a naming hint for invalid name by setting include-na...Torsten Marek2014-03-301-69/+41
* Added support for enforcing multiple, but consistent name styles for differen...Torsten Marek2014-04-091-1/+36
* Also warn about empty docstrings on overridden methods.Torsten Marek2014-03-301-3/+5
* Remove the reference to ast.literal_eval from the error message.cpopa2014-04-071-2/+2
* Add new warning 'eval-used'.cpopa2014-03-251-1/+9
* Merged in PCManticore/pylint (pull request #91)Sylvain Th?nault2014-02-241-6/+9
|\
| * Wrong maxversion used.cpopa2014-02-221-1/+1
| * Syntax only valid for Python 3.3+.cpopa2014-02-221-4/+4
| * Do not warn about returning values in generator for Python 3, it is valid syn...cpopa2014-02-221-7/+10
* | Updated FSF address.Arun Persaud2014-02-231-1/+1
|/
* Use qname(), remove useless check and add packaging info.cpopa2014-02-141-8/+2
* Add support for abc.ABC from Python 3.4.cpopa2014-02-131-2/+19
* Use .next.cpopa2014-02-131-1/+1
* Add abstract-class-instantiated warning.cpopa2014-02-091-1/+44
* Mark `file` as a bad function when using python 2, closes #8.cpopa2014-01-111-0/+1
* Ignore non-inferable nodes, add test case for non-inferable nodes.cpopa2014-01-091-0/+2
* Merge with default.cpopa2014-01-091-6/+16
|\
| * various pylint fixesSylvain Th?nault2013-12-221-2/+2
| * `input` is not a bad function when using python3. Close #110Sylvain Th?nault2013-12-201-1/+5
| * useless-else-on-loop not emited if there is a break in the else clause of inn...Sylvain Th?nault2013-12-201-0/+4
| * [py3] various fixes for python3Sylvain Th?nault2013-12-201-3/+5
* | Handle iter builtin.cpopa2013-10-101-1/+7
* | Ignore deques (can't retrieve special methods).cpopa2013-10-101-1/+6
* | Update message.cpopa2013-10-101-1/+2
* | Mappings aren't accepted by reversed().cpopa2013-10-101-11/+26
* | Check that the argument passed to reversed() is a proper sequence.cpopa2013-10-081-1/+38
|/
* merge with Pylint defaultexeccpopa2013-08-021-9/+9
|\
| * Update changelog and description message.cpopa2013-08-021-1/+1
| * Combine exec-function with exec-statement, rename test files.cpopa2013-08-011-13/+7
| * Check for builtin exec function for Python 3.cpopa2013-07-271-2/+8
* | some pylint and style fixesSylvain Th?nault2013-07-311-9/+9
|/
* Do not double-check parameter names with the regex for parameters and inline ...Torsten Marek2013-07-241-1/+1