Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move docs helper functions out of ``MessagesHandlerMixIn`` | Daniël van Noord | 2021-10-07 | 1 | -1/+2 |
| | |||||
* | Move staticmethods out of MessagesHandlerMixIn (#5123) | Daniël van Noord | 2021-10-07 | 1 | -1/+5 |
| | |||||
* | Add ``Consider-using-f-string`` checker (#4796) | Daniël van Noord | 2021-08-30 | 1 | -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 Mueller | 2021-07-01 | 2 | -2/+2 |
| | | | | * Fix link in license header * Update link to astroid bump_changelog | ||||
* | Rename copying to license and upgrade the setup.cfg (#4338) | Pierre Sassoulas | 2021-04-11 | 2 | -2/+2 |
| | |||||
* | 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 | ||||
* | Add __all__ in __init__.py so all import are used | Pierre Sassoulas | 2020-09-22 | 1 | -2/+0 |
| | |||||
* | Remove unsecable whitespace in the whole codebase | Pierre Sassoulas | 2020-09-12 | 1 | -1/+1 |
| | |||||
* | pyupgrade: automated removal of python2 constructs | Anthony Sottile | 2020-03-24 | 1 | -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 Sassoulas | 2019-06-20 | 1 | -2/+0 |
| | |||||
* | Refactor - Clearer function name ('rest' -> 'rst') in utils | Pierre Sassoulas | 2019-06-20 | 1 | -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_doc | Pierre Sassoulas | 2019-06-20 | 1 | -2/+2 |
| | |||||
* | Refactor - Use get_rest_title where it could be | Pierre Sassoulas | 2019-06-20 | 1 | -3/+4 |
| | |||||
* | Refactor - Use a constant for the main checker name | Pierre Sassoulas | 2019-06-20 | 1 | -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_doc | Pierre Sassoulas | 2019-06-20 | 1 | -16/+14 |
| | | | | Will permit to move functions in the BaseChecker class later. | ||||
* | Style - Re-Apply black following the isort cleanup | Pierre Sassoulas | 2019-03-20 | 2 | -40/+47 |
| | | | | Change with isort triggered change with black. | ||||
* | Style - Apply isort on all apllicable files | Pierre Sassoulas | 2019-03-20 | 2 | -1/+1 |
| | |||||
* | Completely remove six shims from the codebase | Sushobhit | 2018-05-30 | 1 | -2/+1 |
| | |||||
* | pyupgrade (#2136) | Anthony Sottile | 2018-05-22 | 1 | -1/+1 |
| | |||||
* | Make the documentation build reproducibly. (#1761) | Chris Lamb | 2017-12-11 | 1 | -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 Whetter | 2017-07-12 | 2 | -2/+2 |
| | |||||
* | Move parts of the documentation into their own folder section. | Claudiu Popa | 2016-08-14 | 2 | -2/+2 |
| | |||||
* | Automatic generation of extensions.rst (#988) | Glenn Matthews | 2016-07-10 | 2 | -13/+129 |
| | |||||
* | Write bytes, instead of strings. | Claudiu Popa | 2016-07-06 | 1 | -2/+2 |
| | |||||
* | Add the header for the features document. | Claudiu Popa | 2016-07-06 | 1 | -0/+2 |
| | |||||
* | Add a Sphinx hook for generating the features file of Pylint's documentation | Claudiu Popa | 2016-07-06 | 1 | -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. |