summaryrefslogtreecommitdiff
path: root/pylint/config/arguments_manager.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Deprecate ``add_option_group``Daniël van Noord2022-04-071-18/+34
|
* Deprecate ``register_options_provider`` (#6217)Daniël van Noord2022-04-071-8/+23
| | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Deprecate ``reset_parsers``Daniël van Noord2022-04-071-10/+18
|
* Copy all of ``OptionsManagerMixIn`` methods into ``_ArgumentsManager`` (#6214)Daniël van Noord2022-04-071-1/+335
| | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Add ``_option_dicts`` attribute to ``_ArgumentsManager``Daniël van Noord2022-04-061-0/+5
|
* Add ``option_groups_descs`` to ``_ArgumentsProvider``Daniël van Noord2022-04-061-5/+1
|
* Create ``_ArgumentsProvider``Daniël van Noord2022-04-061-2/+2
|
* Add ``prog`` and ``usage`` to ``_ArgumentsManager``Daniël van Noord2022-04-061-3/+3
|
* Remove todo after investigationDaniël van Noord2022-04-061-2/+0
|
* Improve performance of config file readerDaniël van Noord2022-04-061-4/+1
|
* Handle ``group`` in optdicts and ``option_groups`` (#6207)Daniël van Noord2022-04-061-8/+17
| | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Remove ``_parse_plugin_configuration``Daniël van Noord2022-04-051-7/+0
|
* Finalize ``_parse_command_line_configuration`` (#6189)Daniël van Noord2022-04-051-9/+11
|
* Allow creation of deprecated and renamed optionsDaniël van Noord2022-04-041-0/+37
|
* Refactor the help messageDaniël van Noord2022-04-041-1/+7
|
* Refactor all ``_Argument`` classesDaniël van Noord2022-04-041-10/+10
|
* Change naming and imports of ``_Arguments``Daniël van Noord2022-04-041-4/+4
|
* Create ``_CallableArgument``Daniël van Noord2022-04-041-3/+12
|
* Remove ``metavar`` and ``choices`` from ``_StoreTrueArgument``Daniël van Noord2022-04-021-2/+0
|
* Add a ``_StoreTrueArgument`` classDaniël van Noord2022-04-021-5/+17
|
* Use ``argparse`` config handler on two checkers (#6120)Daniël van Noord2022-04-021-1/+1
|
* Create ``_ConfigurationFileParser`` class (#6055)Daniël van Noord2022-04-011-7/+3
| | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Remove the concept of checker priority (#6034)Daniël van Noord2022-04-011-2/+0
| | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Create an `Argument` class and allow convertion of optdict into them (#5584)Daniël van Noord2022-03-291-0/+107
* Use config initialization of ``_ArgumentsManager`` * Allow ``BaseChecker`` to register on a ``_ArgumentsManager`` * Use the ``argparse`` config handler in ``logging.py`` and add tests