summaryrefslogtreecommitdiff
path: root/pylint
Commit message (Expand)AuthorAgeFilesLines
* Fix false-negative cases for trailing-comma-tupleYang Yang2020-04-191-1/+1
* Refactor the dict.get detection code to be easier to understandClaudiu Popa2020-04-031-18/+41
* Don't HTML-escape JSON messages (#3467)Clément Pit-Claudel2020-04-031-2/+1
* Positional-only arguments are taken in account for ``useless-super-delegation``Claudiu Popa2020-03-282-6/+14
* Pick a different name than slice to avoid overshadowing a builtinClaudiu Popa2020-03-271-5/+5
* Properly unwrap astroid.Index on Python 3.9+Claudiu Popa2020-03-271-4/+6
* Do not access Subscript.slice.value directly on Python 3.9Claudiu Popa2020-03-271-1/+5
* Check for invalid sequence and slice index from visit_subscriptClaudiu Popa2020-03-271-21/+23
* Fix R1721: Unnecessary use of a comprehensionPierre Sassoulas2020-03-271-1/+1
* Fix overzealous `arguments-differ` for variadicsmattlbeck2020-03-271-15/+25
* Print the fully qualified name of the extensionClaudiu Popa2020-03-252-10/+5
* Add --list-extensions commandanubh-v2020-03-252-1/+34
* Allow used variables to be properly consumed when different checks are enable...Claudiu Popa2020-03-251-8/+15
* Recognize classes that explicitly inherit from `ABC` or define `metaclass=ABC...Slavfox2020-03-241-0/+12
* pyupgrade: automated removal of python2 constructsAnthony Sottile2020-03-2456-103/+32
* Fix isort issueClaudiu Popa2020-03-131-0/+1
* Do not use pkginfo.modname any longerClaudiu Popa2020-03-131-2/+1
* Add regression test for unused-argument and raiseClaudiu Popa2020-03-131-2/+3
* Add more tests for loading a malitious astroid fileClaudiu Popa2020-03-121-1/+0
* Continue adding the current working directory to sys.path with `fix_import_path`Claudiu Popa2020-03-121-30/+40
* Pass an additional search path to modutils.modpath_from_file and friendsClaudiu Popa2020-03-122-4/+14
* Move _get_python_path in utils to be accessible by that file as wellClaudiu Popa2020-03-122-15/+15
* Replace individual member imports with `os` in utils fileClaudiu Popa2020-03-121-18/+21
* Do not add the current directory to `sys.path` any longerClaudiu Popa2020-03-121-2/+6
* Remove obsolete explicit conversion to integer of a string formatting keynameClaudiu Popa2020-03-111-3/+0
* Add exclude_platforms to functional tests and use it for non_ascii_name checkClaudiu Popa2020-03-112-1/+9
* Allow non-ASCII characters in identifiers in the invalid-name rule and add no...bernie gray2020-03-112-37/+62
* Adjust some annotations and refactor small checksClaudiu Popa2020-03-082-12/+13
* Correct some types and guard against unexpected values in classes checkersClaudiu Popa2020-03-083-5/+8
* Protect against passing a non-class to _check_exception_inherit_from_stopiter...Claudiu Popa2020-03-081-1/+1
* Protect against `exc` not having `pytype`Claudiu Popa2020-03-081-1/+1
* ``no-self-use`` is no longer emitted for typing stubs.Claudiu Popa2020-03-071-0/+2
* Remove superfluous check which is already done on the next lineClaudiu Popa2020-03-031-2/+0
* Fix a false positive of ``self-assigning-variable`` on tuple unpacking.Claudiu Popa2020-03-031-0/+3
* Protect `node_frame_class` against looping continuously on UninferableClaudiu Popa2020-03-021-2/+10
* Emit ``invalid-name`` for variables defined in loops at module level.Claudiu Popa2020-03-021-1/+1
* Only exempt __class__ for undefined-variable from methodsClaudiu Popa2020-03-021-1/+5
* Fix a false positive for ``undefined-variable`` when ``__class__`` is usedClaudiu Popa2020-02-291-0/+1
* Only check the messages that are emitted in VariablesChecker.visit_nameClaudiu Popa2020-02-291-4/+7
* dangerous-default-value accounts for kwargs defaults. Close #3373 (#3423)Gabriel R Sezefredo2020-02-291-1/+4
* Disable too-many-boolean-expressions where it does not make senseClaudiu Popa2020-02-281-0/+1
* `function-redefined`` exempts function redefined on a condition.Claudiu Popa2020-02-281-1/+23
* ``typing.overload`` functions are exempted from docstring checks (#3430)Claudiu Popa2020-02-281-2/+10
* Skip methods without arguments when generating the dot format. Close #3351 (#...Claudiu Popa2020-02-271-1/+4
* Allow instances of tuple of the isinstance() type check (#3425)Claudiu Popa2020-02-271-0/+3
* Allow isinstance-second-argument-not-valid-type to catch more casesClaudiu Popa2020-02-131-10/+14
* Add warning for the case where second argument to isinstance is not a type (#...Anubhav2020-02-131-0/+26
* Add notes-rgx option for fixme checker (#3394)Benny2020-02-131-3/+16
* Adjust assert-on-string-literal to take in consideration empty strings (#3403)Claudiu Popa2020-02-121-2/+6
* Add async def checks for overridden methods (#3392)craig-sh2020-02-121-3/+20