summaryrefslogtreecommitdiff
path: root/doc/exts
Commit message (Collapse)AuthorAgeFilesLines
* Move docs helper functions out of ``MessagesHandlerMixIn``Daniël van Noord2021-10-071-1/+2
|
* Move staticmethods out of MessagesHandlerMixIn (#5123)Daniël van Noord2021-10-071-1/+5
|
* Add ``Consider-using-f-string`` checker (#4796)Daniël van Noord2021-08-301-1/+1
| | | | | | | | | | | | | | | | * 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-012-2/+2
| | | | * Fix link in license header * Update link to astroid bump_changelog
* Rename copying to license and upgrade the setup.cfg (#4338)Pierre Sassoulas2021-04-112-2/+2
|
* 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
* Add __all__ in __init__.py so all import are usedPierre Sassoulas2020-09-221-2/+0
|
* Remove unsecable whitespace in the whole codebasePierre Sassoulas2020-09-121-1/+1
|
* pyupgrade: automated removal of python2 constructsAnthony Sottile2020-03-241-1/+1
| | | | | | | | | | | | | using configuration: ```yaml - repo: https://github.com/asottile/pyupgrade rev: v2.1.0 hooks: - id: pyupgrade args: [--py3-plus, --keep-percent-format] exclude: ^tests/(extensions/data/|functional/|input/|regrtest_data/) ```
* Refactor - Remove unused argument 'name'Pierre Sassoulas2019-06-201-2/+0
|
* Refactor - Clearer function name ('rest' -> 'rst') in utilsPierre Sassoulas2019-06-201-2/+2
| | | | | I used the old name but there was probably a typo in it, as the format is called rst.
* Refactor - Remove useless parameter in print_checker_docPierre Sassoulas2019-06-201-2/+2
|
* Refactor - Use get_rest_title where it could bePierre Sassoulas2019-06-201-3/+4
|
* Refactor - Use a constant for the main checker namePierre Sassoulas2019-06-201-1/+2
| | | | Following review see : https://github.com/PyCQA/pylint/pull/2844#discussion_r281014968
* Refactor - Give a checker instead of a string to _print_checker_docPierre Sassoulas2019-06-201-16/+14
| | | | Will permit to move functions in the BaseChecker class later.
* Style - Re-Apply black following the isort cleanupPierre Sassoulas2019-03-202-40/+47
| | | | Change with isort triggered change with black.
* Style - Apply isort on all apllicable filesPierre Sassoulas2019-03-202-1/+1
|
* Completely remove six shims from the codebaseSushobhit2018-05-301-2/+1
|
* pyupgrade (#2136)Anthony Sottile2018-05-221-1/+1
|
* Make the documentation build reproducibly. (#1761)Chris Lamb2017-12-111-0/+1
| | | | | | | | | | | | | | | Whilst working on the Reproducible Builds effort [0], we noticed that pylint could not be built reproducibly. This is due to the documentation generator iterating over the filesystem in a nondeterminstic order and then iterating over an internal, nondeterminstic, data structure. This was originally filed in Debian as #883913. [0] https://reproducible-builds.org/ [1] https://bugs.debian.org/883913 Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
* Expanded documentation for new contributors (#1569)Ashley Whetter2017-07-122-2/+2
|
* Move parts of the documentation into their own folder section.Claudiu Popa2016-08-142-2/+2
|
* Automatic generation of extensions.rst (#988)Glenn Matthews2016-07-102-13/+129
|
* Write bytes, instead of strings.Claudiu Popa2016-07-061-2/+2
|
* Add the header for the features document.Claudiu Popa2016-07-061-0/+2
|
* Add a Sphinx hook for generating the features file of Pylint's documentationClaudiu Popa2016-07-061-0/+29
Currently we can generate this locally using the makefiles, but, unfortunately, on ReadThedocs we are running only sphinx-build, which means that we have no pre-generated features.rst file before actually building the documentation. This commit just adds one, which does the same thing as the makefiles.