Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Enhancement/add checker consider using min max builtin (#4359) | Qwiddle13 | 2021-04-17 | 1 | -0/+2 |
| | | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: manderj <joffrey.mander+pro@gmail.com> | ||||
* | Use Python official doc's terminology (#4349) | Emmanuel Chaudron | 2021-04-17 | 1 | -3/+3 |
| | | | A directory containing a __init__.py file is called a package, as per https://docs.python.org/3/tutorial/modules.html#packages | ||||
* | Bump sphinx from 3.5.3 to 3.5.4 (#4344) | dependabot[bot] | 2021-04-12 | 1 | -1/+1 |
| | | | | | | | | | | Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 3.5.3 to 3.5.4. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/4.x/CHANGES) - [Commits](https://github.com/sphinx-doc/sphinx/commits/v3.5.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | ||||
* | Follow up to COPYING renamed | Pierre Sassoulas | 2021-04-11 | 1 | -0/+2 |
| | |||||
* | Rename copying to license and upgrade the setup.cfg (#4338) | Pierre Sassoulas | 2021-04-11 | 2 | -2/+2 |
| | |||||
* | New ConfusingConsecutiveElifCheckr (for: #3920) (#4318) | DudeNr33 | 2021-04-11 | 1 | -0/+3 |
| | |||||
* | Update ``astroid`` to 2.5.3 (#4334) | Marc Mueller | 2021-04-10 | 1 | -0/+2 |
| | | | | * Add test case for typing.Generic with ABCMeta | ||||
* | Upgrade the documentation and fix inconsistencies | Pierre Sassoulas | 2021-04-08 | 2 | -13/+19 |
| | |||||
* | Upgrade contribute doc with discord server and fix typoes | Pierre Sassoulas | 2021-04-08 | 1 | -19/+19 |
| | |||||
* | Add prettier to the pre-commit configuration | Pierre Sassoulas | 2021-04-07 | 1 | -30/+29 |
| | | | | Also apply prettier | ||||
* | Add configuration file to change the setting in read the doc | Pierre Sassoulas | 2021-04-06 | 1 | -0/+1 |
| | | | | So contributors do not need admin right in read the doc to change settings if no admin can do it | ||||
* | Remove duplication of requirement file for doc | Pierre Sassoulas | 2021-04-06 | 1 | -1/+2 |
| | |||||
* | Move informations that never change in the setup.py | Pierre Sassoulas | 2021-04-05 | 2 | -4/+4 |
| | |||||
* | Extend documentation for issue #4282 (#4288) | DudeNr33 | 2021-04-03 | 2 | -0/+11 |
| | | | | | | | | | * Extend documentation for https://github.com/PyCQA/pylint/issues/4282: Explain connection between --output-format and --msg-template. Document which command line options are implicitly set through epylint.py_run Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Allow protected-access in class methods (#4267) | James Sinclair | 2021-04-01 | 1 | -0/+2 |
| | | | | | | * Add failing tests for protected member access in class methods. * Allow protected-access to class/instance members inside class methods. Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Upgrade the version for development following 2.7.4 release (#4269) | Pierre Sassoulas | 2021-03-30 | 1 | -5/+8 |
| | |||||
* | Upgrade project for 2.7.4, and 2.8.0 (#4262) | Pierre Sassoulas | 2021-03-29 | 1 | -0/+3 |
| | |||||
* | Import astroid with import x or from x import y but not both | Pierre Sassoulas | 2021-03-28 | 1 | -2/+1 |
| | | | | Remove unused imports for astroid | ||||
* | Update the release documentation for pre-commit autoupdate to works | Pierre Sassoulas | 2021-03-21 | 1 | -0/+11 |
| | | | | Closes #4245 | ||||
* | Typo | flyingbot91 | 2021-03-12 | 1 | -1/+1 |
| | |||||
* | Update whatsnew | Peter Kolbus | 2021-03-09 | 1 | -0/+4 |
| | | | | Add an entry to whatsnew/2.8.rst announcing the change. | ||||
* | Add extension-pkg-allow-list option | Peter Kolbus | 2021-03-09 | 1 | -4/+4 |
| | | | | | Add an option extension-pkg-allow-list to the main checker. This is an alternate name for extension-pkg-whitelist. | ||||
* | Remove 'blacklist' term for good/bad identifiers | Peter Kolbus | 2021-03-09 | 1 | -2/+2 |
| | | | | | | | Replace blacklist/whitelist terminology in the context of identifier names. The message identifier 'blacklisted-name' will be addressed in a future patch; a transition path is needed because this message may be referenced in pylintrc files or disable comments. | ||||
* | Reduce 'blacklist' term for ignored files | Peter Kolbus | 2021-03-09 | 2 | -3/+3 |
| | | | | | | | Replace usage of the term 'blacklist' in the context of ignored files and directories (--ignore and --ignore-patterns), except in cases where backward compatibility is needed. In documentation and help, supplement 'ignore' with 'skip'; in code use the term 'ignore list'. | ||||
* | Introduced deprecated attributes | Matus Valo | 2021-03-06 | 1 | -0/+1 |
| | |||||
* | Add --class-const-naming-style | Marc Mueller | 2021-03-06 | 1 | -0/+6 |
| | |||||
* | Fix changelog and whatsnew (pre-commit-hook) | Marc Mueller | 2021-03-06 | 10 | -48/+48 |
| | |||||
* | Add allow-redefined-builtins option to variable checker | Alexander Kapshuna | 2021-03-05 | 1 | -0/+2 |
| | | | | | | | | Some builtins have little-to-no use in application code while being convenient as variables names (e.g. id, dir). New option allows to configure allowed to override names for redefined-builtin checker. Closes #3263 | ||||
* | Update doc for release (easier command to copy paste) | Pierre Sassoulas | 2021-02-28 | 1 | -2/+2 |
| | |||||
* | Add 2.8.0 in the Changelog | Pierre Sassoulas | 2021-02-21 | 3 | -3/+24 |
| | |||||
* | Better documentation for the change in version during release | Pierre Sassoulas | 2021-02-21 | 1 | -1/+6 |
| | |||||
* | Upgrade the documentation about release | Pierre Sassoulas | 2021-02-21 | 2 | -48/+68 |
| | |||||
* | Edit highlights for 2.7.0 in whatsnew | Pierre Sassoulas | 2021-02-21 | 1 | -2/+4 |
| | |||||
* | Fix link to isort documentation in doc/faq.rst | Pierre Sassoulas | 2021-02-21 | 1 | -1/+1 |
| | |||||
* | Move from % string formatting syntax to f-string or .format() | Pierre Sassoulas | 2021-02-21 | 1 | -1/+1 |
| | |||||
* | Added example of deprecation checker | Matus Valo | 2021-02-21 | 1 | -1/+3 |
| | |||||
* | Add new `consider-using-generator` and 'use-a-generator' checkers | Ikraduya Edian | 2021-02-20 | 1 | -0/+2 |
| | | | | | | | | See issue #3165 (#3309) See https://github.com/PyCQA/pylint/pull/3309#discussion_r576683109 Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Daniel Hahler <github@thequod.de> | ||||
* | Fix false positive when map() receives iterable | Tiago Honorato | 2021-02-20 | 1 | -1/+1 |
| | | | | | | | Since map() supports iterables, it should not issue builtin-not-iterating for iterable arguments. Signed-off-by: Tiago Honorato <tiagohonorato1@gmail.com> | ||||
* | Fix false positive when zip() receives iterable (#4105) | tiagohonorato | 2021-02-19 | 1 | -0/+2 |
| | | | | | | | | Since zip() supports iterables, it should not be an issue builtin-not-iterating for iterable arguments. Signed-off-by: Tiago Honorato <tiagohonorato1@gmail.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | add nan-comparison checker for NaN comparisons | Or Bahari | 2021-02-18 | 1 | -0/+2 |
| | | | | **After fix whatsnew to 2.7 | ||||
* | Fix the changelog and whatsnew retroactively for 2.7 release | Pierre Sassoulas | 2021-02-16 | 3 | -31/+51 |
| | | | | | | | | | | | | 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. | ||||
* | Move from format() to f-string where it makes sense | Pierre Sassoulas | 2021-02-16 | 1 | -1/+1 |
| | | | | As we do not maintain python 3.5 it permit to simplify some code | ||||
* | Bump minimum required Python to 3.6 | David Gilman | 2021-02-16 | 2 | -1/+2 |
| | |||||
* | Drop support for Python 3.5 to fix typing | Marc Mueller | 2021-02-15 | 1 | -1/+1 |
| | | | | * Variable annotation (PEP 526) requires Python 3.6 | ||||
* | mapreduce| chore| Updating ChangeLog/Contributors/Release notes | Frank Harrison | 2021-01-02 | 1 | -0/+2 |
| | |||||
* | Add a message in the changelog and update contributors.txt | Pierre Sassoulas | 2020-12-31 | 1 | -0/+2 |
| | |||||
* | Handle class decorators during typing checks. | Julien Palard | 2020-11-02 | 1 | -1/+4 |
| | |||||
* | lint multiprocessing pool shutdown | manderj | 2020-10-30 | 1 | -0/+2 |
| | |||||
* | Apply suggestion done during review by @hippo91 | Pierre Sassoulas | 2020-10-30 | 1 | -2/+2 |
| | |||||
* | Make the update option more modular | Pierre Sassoulas | 2020-10-30 | 1 | -2/+2 |
| |