summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove pre-commit part that are in github action from travis.ymlgithub-actionsPierre Sassoulas2021-02-191-6/+0
|
* Fix 422 Client Error: Unprocessable Entity for urlPierre Sassoulas2021-02-191-1/+1
|
* Small update to python hash generationMarc Mueller2021-02-191-27/+21
|
* Small update to pre-commit hash generationMarc Mueller2021-02-191-4/+5
|
* Remove unnecessary workflow stepMarc Mueller2021-02-191-10/+1
|
* Update ChangeLogMarc Mueller2021-02-191-1/+1
| | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Add Github Action configMarc Mueller2021-02-197-1/+479
| | | | | * Add changlog entry * Includes review changes
* Update tox.ini formattingMarc Mueller2021-02-191-9/+9
|
* add nan-comparison checker for NaN comparisonsOr Bahari2021-02-186-2/+131
| | | | **After fix whatsnew to 2.7
* Fix the changelog and whatsnew retroactively for 2.7 releasePierre Sassoulas2021-02-164-46/+75
| | | | | | | | | | | | Remove everything that was in 2.6 changelog when it should be in 2.7 following the decision taken in #3831. This can be checked with ``` git remote add pyorigin git@github.com:PyCQA/pylint.git git diff pyorigin/2.6 doc/whatsnew/ git diff pyorigin/2.6 ChangeLog ``` The idea is that nothing should be added between 2.6 and now in a 2.6 portion everything done between now and 2.6 should be in 2.7.
* Fix issue with nested PEP 604 syntaxMarc Mueller2021-02-167-32/+68
|
* Fix issue with nested PEP 585 syntaxMarc Mueller2021-02-167-16/+95
|
* Remove python 3.8 from AppVeyor following reviewPierre Sassoulas2021-02-161-2/+0
| | | | See https://github.com/PyCQA/pylint/pull/4091\#discussion_r576412265
* Move from format() to f-string where it makes sensePierre Sassoulas2021-02-1626-245/+148
| | | | As we do not maintain python 3.5 it permit to simplify some code
* Fix pylint warningshippo912021-02-161-1/+0
|
* Disable TestNoSixDavid Gilman2021-02-161-3/+1
| | | | | | | At this point there are still a handful of packages that are pulling in six so it is not easy to get a six-free testing environment. Maybe in a few months or a year the community will start its detachment from six and this can come back in.
* Remove Python 3.4 compatibility code from MessageDavid Gilman2021-02-161-3/+1
|
* Remove tests that only run pre-Python 3.6David Gilman2021-02-1639-398/+0
|
* Bump minimum required Python to 3.6David Gilman2021-02-164-1/+7
|
* Re-add accidentally removed py3k unittestDavid Gilman2021-02-161-0/+23
|
* Check for lack of six in tox test runsDavid Gilman2021-02-161-0/+14
|
* Remove six dependency from test suiteDavid Gilman2021-02-1617-64/+57
|
* Graingert add generated members match against the qualified name (#4092)Pierre Sassoulas2021-02-156-12/+37
| | | | | | | | * Fix #2498: add generated-members match against the qualified name Add test for fully qualified generated-members Co-authored-by: Gauthier Sebaux <gauthier.sebaux@wavestone.com> Co-authored-by: Thomas Grainger <tagrain@gmail.com>
* Ignore F401 'distutils.command.install_lib' imported but unusedPierre Sassoulas2021-02-151-1/+3
| | | | Do we even want to use distutil anyway ?
* Fix E265 block comment should start with '# 'Pierre Sassoulas2021-02-151-1/+2
|
* Fix W504 line break after binary operatorPierre Sassoulas2021-02-151-4/+2
|
* Fix E266 too many leading '#' for block commentPierre Sassoulas2021-02-151-9/+2
|
* Fix E731 do not assign a lambda expression, use a defPierre Sassoulas2021-02-152-3/+6
|
* F841 local variable 'exc' is assigned to but never usedPierre Sassoulas2021-02-151-1/+1
|
* Fix E301 expected 1 blank line, found 0Pierre Sassoulas2021-02-151-2/+14
|
* Fix all E741 ambiguous variable name 'l'Pierre Sassoulas2021-02-152-15/+14
|
* Add flake8 to the pre-commit configurationPierre Sassoulas2021-02-152-0/+12
|
* Fix E714 test for object identity should be 'is not'Pierre Sassoulas2021-02-151-2/+2
|
* Autoupdate pre-commit hook in pre-commit configurationPierre Sassoulas2021-02-151-2/+2
|
* Add a warning in the .gitignorePierre Sassoulas2021-02-151-4/+3
|
* Fix TypedDict inherit-non-class false-positive Python 3.9+Marc Mueller2021-02-154-0/+29
| | | | * Closes #1927
* Fix multiple false positives with assignment expressionsMarc Mueller2021-02-155-0/+97
| | | | | * Used-before-assignment false positive * Undefined-variable false positive
* Add check for alternative union syntax - PEP 604Marc Mueller2021-02-1511-0/+334
|
* Add support for pep585 with postponed evaulationMarc Mueller2021-02-1512-5/+377
|
* Drop support for Python 3.5 to fix typingMarc Mueller2021-02-157-12/+7
| | | | * Variable annotation (PEP 526) requires Python 3.6
* Remove hash functionMarc Mueller2021-02-151-3/+0
| | | | * Return none already implied, by overwriting __eq__ and not __hash__
* Remove a sys.pypy_version_info that can only fail and unskip a testPierre Sassoulas2021-02-071-10/+0
|
* Fix mypy error: os module has no attribute "_name"Pierre Sassoulas2021-02-071-1/+1
|
* Remove unused and bugged pypy_version_infoPierre Sassoulas2021-02-071-5/+0
|
* Fix base class "CheckerTestCase" defined the type as "None"Pierre Sassoulas2021-02-071-2/+2
|
* Fix need type annotation for 'CONFIG'Pierre Sassoulas2021-02-072-4/+6
|
* Fix type of argument in multiset_differencePierre Sassoulas2021-02-071-2/+4
|
* Initialize a boolean value as False instead of NonePierre Sassoulas2021-02-071-1/+1
|
* Fix base class "object" defined __hash__ as "Callable[[object], int]"Pierre Sassoulas2021-02-071-1/+2
|
* Fix Need type annotation for '__pkginfo__'Pierre Sassoulas2021-02-071-1/+2
|