summaryrefslogtreecommitdiff
path: root/pylint/config/man_help_formatter.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove broken ``generate-man`` option (#6126)Daniël van Noord2022-04-021-121/+0
| | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Add a pre-commit hook to check the copyright noticePierre Sassoulas2022-03-241-1/+1
| | | | | Fix the existing file so they have a notice. No header for setup.py or examples or doc
* Simplify hard to maintain copyright noticePierre Sassoulas2022-03-241-0/+1
| | | | | | git is the source of truth for the copyright, copyrite (the tool) was taking exponentially longer with each release, and it's polluting the code with sometime as much as 50 lines of names.
* Update ``pydocstringformatter`` to 0.4.0 (#5787)Daniël van Noord2022-02-101-1/+1
|
* Add missing method to ``_ManHelpFormatter`` (#5577)Pierre Sassoulas2021-12-211-1/+4
| | | Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
* [pre-commit.ci] pre-commit autoupdate (#5082)pre-commit-ci[bot]2021-09-281-3/+1
| | | | | | | | | | | * [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/pyupgrade: v2.26.0 → v2.28.0](https://github.com/asottile/pyupgrade/compare/v2.26.0...v2.28.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Add typing to most reference of ``stream``Daniël van Noord2021-09-131-0/+1
|
* Add ``Consider-using-f-string`` checker (#4796)Daniël van Noord2021-08-301-2/+5
| | | | | | | | | | | | | | | | * Add ``consider-using-f-string`` checker This adds a checker for normal strings which are formatted with ``.format()`` or '%'. The message is a convention to nudge users towards using f-strings. This closes #3592 * Update pylint code to use f-strings After adding `consider-using-f-strings` the codebase showed numerous cases of formatting which could be f-strings. This commit changes most of these to become f-strings, or adds ignores. * Apply suggestions from code review Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Fix copyright links (#4647)Marc Mueller2021-07-011-1/+1
| | | | * Fix link in license header * Update link to astroid bump_changelog
* Bump pyupgrade from 2.16.0 to 2.18.1 (#4496)dependabot[bot]2021-05-241-1/+1
| | | | | | | | | | | | | | | | * Bump pyupgrade from 2.16.0 to 2.18.1 Bumps [pyupgrade](https://github.com/asottile/pyupgrade) from 2.16.0 to 2.18.1. - [Release notes](https://github.com/asottile/pyupgrade/releases) - [Commits](https://github.com/asottile/pyupgrade/compare/v2.16.0...v2.18.1) Signed-off-by: dependabot[bot] <support@github.com> * Update pre-commit-config * Changes after pyupgrade update Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
* Moved stdlib module deprecation from imports checker to stdlib checker (#4454)Matus Valo2021-05-101-1/+1
| | | | | * Moved stdlib module deprecation from imports checker to stdlib checker * Ignore deprecated-module error in pylint/config modules
* Rename copying to license and upgrade the setup.cfg (#4338)Pierre Sassoulas2021-04-111-1/+1
|
* Migrate from % syntax or bad format() syntax to fstringPierre Sassoulas2021-02-211-48/+24
| | | | We can do that in python 3.6
* Move from % string formatting syntax to f-string or .format()Pierre Sassoulas2021-02-211-15/+15
|
* Fix all E741 ambiguous variable name 'l'Pierre Sassoulas2021-02-151-1/+1
|
* Create a file for ManPageFormatterPierre Sassoulas2020-05-031-0/+139