2019-11-24 12:31:08 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-pylint-django: updated to 2.0.13
Version 2.0.13:
- Suppress ``too-many-ancestors`` for class-based generic views
- Add ``handler400``, ``handler403``, ``handler404`` to good_names.
|
2019-11-05 08:46:47 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-pylint-django: updated to 2.0.12
Version 2.0.12:
- Fix too broad suppression of ``unused-argument`` warnings for functions and
methods where the first argument is named ``request``. Now issues warnings
for the rest of the arguments if they are unused.
- Pass arguments of ``scripts/test.sh`` to ``test_func/pytest`` to ease
development.
- Document behavior when ForeignKey fields are referenced as strings.
|
2019-08-06 11:47:24 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-pylint-django: updated to 2.0.11
Version 2.0.11:
- Use functools.wrap to preserve leave_module info
|
2019-07-08 09:41:44 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-pylint-django: updated to 2.0.10
Version 2.0.10:
- Suppress no-member for ManyToManyField.
- Fix UnboundLocalError with ForeignKey(to=).
|
2019-04-27 11:35:29 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-pylint-django: updated to 2.0.9
Version 2.0.9:
- Fix UnboundLocalError: local variable 'key_cls' referenced before assignment
for cases when models is a python package, the to argument is a string
that is used in this pattern app.Model and also there is some other
bool const like null=True right after to.
- Don't crash if ForeignKey field doesn't have keyword arguments
|
2019-04-25 07:14:13 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-pylint-django: updated to 2.0.8
Version 2.0.8:
- Support recursive (self) ForeignKey relations.
Version 2.0.7:
- Fixed AstroidImportError for DecimalField.
- Add load_configuration() in pylint_django/__init__.py.
- Support ForeignKey relations with to keyword.
|
2019-02-28 10:24:59 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-pylint-django: updated to 2.0.6
Version 2.0.6:
- Updating dependency version of pylint-plugin-utils as pylint 2.3 release
was not compatible
- Improvements to tox.ini
- Add support for new load_configuration hook of pylint
- 'urlpatterns' no longer reported as an invalid constant name
|
2018-12-18 12:50:34 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-pylint-django: updated to 2.0.5
Version 2.0.5:
Bumping the version number because there's been a mix-up between
GitHub tags and the versions pushed to PyPI for 2.0.3 and 2.0.4.
|
2018-11-27 17:22:41 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-pylint-django: updated to 2.0.4
2.0.4:
Unknown changes
2.0.3:
Fixing compatability between ranges of astroid (2.0.4 -> 2.1) and pylint \
(2.1.1 -> 2.2)
|
2018-08-27 13:18:35 by Adam Ciarcinski | Files touched by this commit (3) |
Log message:
py-pylint-django: 2.0.2
Version 2.0.2:
Suppress false-positive no-self-argument in factory.post_generation.
|