summaryrefslogtreecommitdiff
path: root/pylint/config/utils.py
Commit message (Collapse)AuthorAgeFilesLines
* [PyCQA migration] Upgrade links to the repositories in code and doc (#8514)Pierre Sassoulas2023-03-291-2/+2
|
* Remove all old code related to ``optparse`` config parsing. (#8405)Daniël van Noord2023-03-081-20/+3
| | | | | * Remove all old config parsing code * Temporarily disable a test
* Provide more context in these two DeprecationWarning.Yilei Yang2022-09-161-2/+4
| | | | | | Since this is called a few frame levels inside Pylint, providing the context of what optdict= can help with finding where the option originally comes from. This is a follow-up to #7465
* Fix return type of ``_parse_rich_type_value``Daniël van Noord2022-09-091-1/+1
|
* Fix typo in option processingJacob Walls2022-06-231-1/+1
|
* [spellcheck] Fix the spellcheck hopefully for all environments (#6827)Pierre Sassoulas2022-06-041-0/+1
|
* [deleted messages] Add an exception for deleted messages in MessageIdStorePierre Sassoulas2022-06-041-2/+1
|
* Fix the use of abbreviations for preprocessable options on the CLI (#6820)Daniël van Noord2022-06-031-10/+33
| | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Remove some words from custom dictionary and update spellingDaniël van Noord2022-04-261-1/+1
|
* Fix handling of default value for extend action in Python 3.7DudeNr332022-04-241-1/+1
|
* Fix short ``-v`` flag and add ``metavar`` support to ``_CallableArgument`` ↵Daniël van Noord2022-04-191-1/+3
| | | | (#6386)
* Add some typing to ``pylint/lint`` (#6376)Daniël van Noord2022-04-181-2/+2
|
* Remove ``choices`` from ``confidence``Daniël van Noord2022-04-151-11/+5
|
* Use ``--py39-plus`` and ``--full-reorder`` in ``python-typing-update`` (#6313)Daniël van Noord2022-04-141-1/+2
|
* Add classifications to TODOs across codebaseDaniël van Noord2022-04-141-1/+1
|
* Add ``_ArgumentsManager.set_option`` and deprecate old option setters (#6299)Daniël van Noord2022-04-141-1/+1
|
* Use ``python-typing-update`` on ``pylint/config`` directory (#6307)Daniël van Noord2022-04-141-20/+21
|
* Create ``_ExtendArgument``Daniël van Noord2022-04-141-1/+15
|
* Fix handling of rich types in ``ini`` and ``toml`` filesDaniël van Noord2022-04-111-0/+2
|
* Use ``namespace`` in two more checkersDaniël van Noord2022-04-111-0/+3
|
* Handle missing keys in option dictionariesDaniël van Noord2022-04-111-19/+30
|
* Handle ``group`` in optdicts and ``option_groups`` (#6207)Daniël van Noord2022-04-061-2/+6
| | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Allow creation of deprecated and renamed optionsDaniël van Noord2022-04-041-5/+48
|
* Move preprocessing of arguments into ``config`` directoryDaniël van Noord2022-04-041-1/+100
|
* Refactor the help messageDaniël van Noord2022-04-041-1/+11
|
* Change naming and imports of ``_Arguments``Daniël van Noord2022-04-041-3/+3
|
* Add TODOs for the final keys of the ``optdicts``Daniël van Noord2022-04-041-9/+4
|
* Create ``_CallableArgument``Daniël van Noord2022-04-041-2/+10
|
* Handle ``optdict`` flags and ``confidence`` option betterDaniël van Noord2022-04-041-3/+16
|
* Remove ``metavar`` and ``choices`` from ``_StoreTrueArgument``Daniël van Noord2022-04-021-2/+0
|
* Add a ``_StoreTrueArgument`` classDaniël van Noord2022-04-021-4/+16
|
* Move ``_parse_rich_type_value`` to ``utils``Daniël van Noord2022-04-021-0/+7
|
* Create an `Argument` class and allow convertion of optdict into them (#5584)Daniël van Noord2022-03-291-0/+34
* Use config initialization of ``_ArgumentsManager`` * Allow ``BaseChecker`` to register on a ``_ArgumentsManager`` * Use the ``argparse`` config handler in ``logging.py`` and add tests