summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Enhancement/add checker consider using min max builtin (#4359)Qwiddle132021-04-171-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 Chaudron2021-04-171-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-121-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 renamedPierre Sassoulas2021-04-111-0/+2
|
* Rename copying to license and upgrade the setup.cfg (#4338)Pierre Sassoulas2021-04-112-2/+2
|
* New ConfusingConsecutiveElifCheckr (for: #3920) (#4318)DudeNr332021-04-111-0/+3
|
* Update ``astroid`` to 2.5.3 (#4334)Marc Mueller2021-04-101-0/+2
| | | | * Add test case for typing.Generic with ABCMeta
* Upgrade the documentation and fix inconsistenciesPierre Sassoulas2021-04-082-13/+19
|
* Upgrade contribute doc with discord server and fix typoesPierre Sassoulas2021-04-081-19/+19
|
* Add prettier to the pre-commit configurationPierre Sassoulas2021-04-071-30/+29
| | | | Also apply prettier
* Add configuration file to change the setting in read the docPierre Sassoulas2021-04-061-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 docPierre Sassoulas2021-04-061-1/+2
|
* Move informations that never change in the setup.pyPierre Sassoulas2021-04-052-4/+4
|
* Extend documentation for issue #4282 (#4288)DudeNr332021-04-032-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 Sinclair2021-04-011-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 Sassoulas2021-03-301-5/+8
|
* Upgrade project for 2.7.4, and 2.8.0 (#4262)Pierre Sassoulas2021-03-291-0/+3
|
* Import astroid with import x or from x import y but not bothPierre Sassoulas2021-03-281-2/+1
| | | | Remove unused imports for astroid
* Update the release documentation for pre-commit autoupdate to worksPierre Sassoulas2021-03-211-0/+11
| | | | Closes #4245
* Typoflyingbot912021-03-121-1/+1
|
* Update whatsnewPeter Kolbus2021-03-091-0/+4
| | | | Add an entry to whatsnew/2.8.rst announcing the change.
* Add extension-pkg-allow-list optionPeter Kolbus2021-03-091-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 identifiersPeter Kolbus2021-03-091-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 filesPeter Kolbus2021-03-092-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 attributesMatus Valo2021-03-061-0/+1
|
* Add --class-const-naming-styleMarc Mueller2021-03-061-0/+6
|
* Fix changelog and whatsnew (pre-commit-hook)Marc Mueller2021-03-0610-48/+48
|
* Add allow-redefined-builtins option to variable checkerAlexander Kapshuna2021-03-051-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 Sassoulas2021-02-281-2/+2
|
* Add 2.8.0 in the ChangelogPierre Sassoulas2021-02-213-3/+24
|
* Better documentation for the change in version during releasePierre Sassoulas2021-02-211-1/+6
|
* Upgrade the documentation about releasePierre Sassoulas2021-02-212-48/+68
|
* Edit highlights for 2.7.0 in whatsnewPierre Sassoulas2021-02-211-2/+4
|
* Fix link to isort documentation in doc/faq.rstPierre Sassoulas2021-02-211-1/+1
|
* Move from % string formatting syntax to f-string or .format()Pierre Sassoulas2021-02-211-1/+1
|
* Added example of deprecation checkerMatus Valo2021-02-211-1/+3
|
* Add new `consider-using-generator` and 'use-a-generator' checkersIkraduya Edian2021-02-201-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 iterableTiago Honorato2021-02-201-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)tiagohonorato2021-02-191-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 comparisonsOr Bahari2021-02-181-0/+2
| | | | **After fix whatsnew to 2.7
* Fix the changelog and whatsnew retroactively for 2.7 releasePierre Sassoulas2021-02-163-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 sensePierre Sassoulas2021-02-161-1/+1
| | | | As we do not maintain python 3.5 it permit to simplify some code
* Bump minimum required Python to 3.6David Gilman2021-02-162-1/+2
|
* Drop support for Python 3.5 to fix typingMarc Mueller2021-02-151-1/+1
| | | | * Variable annotation (PEP 526) requires Python 3.6
* mapreduce| chore| Updating ChangeLog/Contributors/Release notesFrank Harrison2021-01-021-0/+2
|
* Add a message in the changelog and update contributors.txtPierre Sassoulas2020-12-311-0/+2
|
* Handle class decorators during typing checks.Julien Palard2020-11-021-1/+4
|
* lint multiprocessing pool shutdownmanderj2020-10-301-0/+2
|
* Apply suggestion done during review by @hippo91Pierre Sassoulas2020-10-301-2/+2
|
* Make the update option more modularPierre Sassoulas2020-10-301-2/+2
|