summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Fixed an ``AttributeError`` caused by improper handling of ``dataclasses`` in...2.4Claudiu Popa2019-11-214-1/+39
* Remove pylint/utils.py from the documentation build since it is not neededClaudiu Popa2019-11-211-2/+0
* Prepare 2.4.4pylint-2.4.4Claudiu Popa2019-11-131-1/+1
* Relax type import detection for names that do not come from the ``typing`` mo...Claudiu Popa2019-11-133-5/+11
* Mark this branch as 2.4.4Claudiu Popa2019-11-081-1/+1
* Exempt all the names found in type annotations from ``unused-import``Claudiu Popa2019-11-083-1/+20
* Prepare 2.4.3pylint-2.4.3Claudiu Popa2019-10-181-1/+1
* Disable too-many-locals for complex functionClaudiu Popa2019-10-171-1/+1
* ``typing.overload`` functions are exempted from ``too-many-function-args``Claudiu Popa2019-10-174-12/+58
* Fixed ``missing-yield-type-doc`` ignoring type annotation (#3195)Ashley Whetter2019-10-174-17/+42
* Disable too-few-public-methodsClaudiu Popa2019-10-161-1/+1
* `invalid-overridden-method` takes `abc.abstractproperty` in accountClaudiu Popa2019-10-163-2/+11
* Squash is_property_deleter and use is_property_setter_or_deleter insteadClaudiu Popa2019-10-162-8/+3
* ``consider-using-sys-exit`` is no longer emitted when `exit` is imported in t...Claudiu Popa2019-10-113-5/+21
* Do not emit ``no-method-argument`` for functions using positional only args.Claudiu Popa2019-10-114-2/+21
* ``import-outside-toplevel`` is emitted for ``ImportFrom`` nodes as well.Claudiu Popa2019-10-0916-28/+31
* Add missing changelog entryClaudiu Popa2019-10-091-0/+4
* Bump to 2.4.3Claudiu Popa2019-10-092-1/+7
* properly handle literals in ``unnecessary-comprehension`` checker, closes #3148Rémi Cardona2019-10-034-5/+10
* expand nested ternaries in ``unnecessary-comprehension`` to proper if statementsRémi Cardona2019-10-031-9/+6
* Prepare 2.4.2pylint-2.4.2Claudiu Popa2019-09-301-1/+1
* Pin mypy and typed-ast to fix the CIClaudiu Popa2019-09-302-3/+4
* Add the missing rc file for class_variable_slots_conflictClaudiu Popa2019-09-301-0/+2
* Fix ``utils.is_error`` to account for functions returning early.Claudiu Popa2019-09-304-3/+23
* Exempt annotated assignments without variable from ``class-variable-slots-con...Claudiu Popa2019-09-303-1/+14
* ``consider-using-sys-exit`` is exempted when `exit()` is imported from `sys`Claudiu Popa2019-09-303-1/+18
* Pin astroid to the latest minor releaseClaudiu Popa2019-09-261-1/+1
* Rename attributes to prepare for the astroid dataclass transformClaudiu Popa2019-09-261-4/+4
* Bump master to 2.4.2Claudiu Popa2019-09-261-1/+1
* ``self-assigning-variable`` skips class level assignments.Claudiu Popa2019-09-263-0/+19
* ``ignored-modules`` can skip submodules. Close #3135Claudiu Popa2019-09-263-10/+49
* Disable error for complex functionClaudiu Popa2019-09-251-0/+1
* Fix a bunch of other tests as wellClaudiu Popa2019-09-252-8/+8
* Continue looking for undefined variables in type checking guards. Close #3127Claudiu Popa2019-09-252-2/+6
* Move files that were in the wrong directoryClaudiu Popa2019-09-255-7/+7
* Prepare 2.4.1pylint-2.4.1Claudiu Popa2019-09-252-1/+25
* Exempt type checking definitions defined in both clauses of a type checking g...Claudiu Popa2019-09-253-33/+61
* Exempt type checking definitions inside the type check guardClaudiu Popa2019-09-252-1/+11
* Require astroid >= 2.3Ville Skyttä2019-09-251-1/+1
* Try again to do a releasepylint-2.4.0Claudiu Popa2019-09-241-4/+1
* use a token for travis releasesClaudiu Popa2019-09-241-51/+50
* Prepare releaseClaudiu Popa2019-09-243-3/+3
* Simplify and improve the logic of consider-iterating-dictionaryClaudiu Popa2019-09-241-4/+9
* Add regression test for old-division and floats. Close #3039Claudiu Popa2019-09-244-6/+10
* Squash multiple checks for special classes into a single functionClaudiu Popa2019-09-241-51/+10
* Disable too-few-public-methods for data classes. Close #3025Claudiu Popa2019-09-242-3/+17
* Document the new arguments for the private methods in docparamsClaudiu Popa2019-09-231-27/+31
* Disable too-many-public-methods for humonguous classClaudiu Popa2019-09-231-0/+1
* Exempt kwonly arguments when they are annotated from missing-type-doc. Close ...Claudiu Popa2019-09-232-0/+21
* Move closures to separate methods to simplify the check functionsClaudiu Popa2019-09-231-57/+90