summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* pyupgrade: automated removal of python2 constructsAnthony Sottile2020-03-2485-155/+53
* fix appveyor to not use python2Anthony Sottile2020-03-242-28/+1
* Fix installation of pylint from source with no localeAnthony Sottile2020-03-241-1/+1
* Fix isort issueClaudiu Popa2020-03-131-0/+1
* Refresh the docs a bit in preparation for the releaseClaudiu Popa2020-03-134-226/+243
* Do not use pkginfo.modname any longerClaudiu Popa2020-03-131-2/+1
* Add regression test for unused-argument and raiseClaudiu Popa2020-03-133-2/+18
* Add more tests for loading a malitious astroid fileClaudiu Popa2020-03-122-2/+16
* 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
* Add test for checking that files are not imported from local directoryClaudiu Popa2020-03-121-0/+32
* Do not add the current directory to `sys.path` any longerClaudiu Popa2020-03-122-13/+13
* 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-114-5/+12
* Allow non-ASCII characters in identifiers in the invalid-name rule and add no...bernie gray2020-03-1112-50/+98
* 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-073-1/+21
* Add regression test for property false positive. Close #3231Claudiu Popa2020-03-061-0/+20
* 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-033-0/+8
* 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-024-1/+11
* 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-293-0/+11
* Only check the messages that are emitted in VariablesChecker.visit_nameClaudiu Popa2020-02-291-4/+7
* Remove section related to Python 2 supportClaudiu Popa2020-02-291-10/+1
* dangerous-default-value accounts for kwargs defaults. Close #3373 (#3423)Gabriel R Sezefredo2020-02-294-1/+13
* 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-283-1/+38
* ``typing.overload`` functions are exempted from docstring checks (#3430)Claudiu Popa2020-02-282-2/+14
* 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-273-5/+10
* Allow isinstance-second-argument-not-valid-type to catch more casesClaudiu Popa2020-02-134-13/+18
* Add warning for the case where second argument to isinstance is not a type (#...Anubhav2020-02-135-0/+69
* Add notes-rgx option for fixme checker (#3394)Benny2020-02-138-4/+42
* Adjust assert-on-string-literal to take in consideration empty strings (#3403)Claudiu Popa2020-02-123-2/+8
* Add async def checks for overridden methods (#3392)craig-sh2020-02-124-10/+50
* Do not allow ``python -m pylint ...`` to import user code (#3396)Claudiu Popa2020-02-113-4/+27
* Do not emit `logging-too-many-args` when `logging-format-interpolation` is em...Claudiu Popa2020-02-112-2/+3
* Remove unneeded Changelog entriesClaudiu Popa2020-02-111-15/+2
* Allow dummy variables for 'redeclared-assigned-name' (#3384)Benny2020-02-056-0/+23
* Emit ``unused-argument`` for functions that partially uses their argument lis...Claudiu Popa2020-02-054-11/+14
* Fixed broad_try_clause extension to check try/finally statements and to check...Tyler Thieding2020-02-054-5/+75
* Fixed writing graphs to relative paths (#3378)Benjamin Graham2020-02-043-13/+7
* Remove import of Counter from types (unneeded and prevents use in python 3.5....Anthony2020-02-043-2/+9