Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [PyCQA migration] Upgrade links to the repositories in code and doc (#8514) | Pierre Sassoulas | 2023-03-29 | 1 | -2/+2 |
| | |||||
* | Remove all old code related to ``optparse`` config parsing. (#8405) | Daniël van Noord | 2023-03-08 | 1 | -20/+3 |
| | | | | | * Remove all old config parsing code * Temporarily disable a test | ||||
* | Provide more context in these two DeprecationWarning. | Yilei Yang | 2022-09-16 | 1 | -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 Noord | 2022-09-09 | 1 | -1/+1 |
| | |||||
* | Fix typo in option processing | Jacob Walls | 2022-06-23 | 1 | -1/+1 |
| | |||||
* | [spellcheck] Fix the spellcheck hopefully for all environments (#6827) | Pierre Sassoulas | 2022-06-04 | 1 | -0/+1 |
| | |||||
* | [deleted messages] Add an exception for deleted messages in MessageIdStore | Pierre Sassoulas | 2022-06-04 | 1 | -2/+1 |
| | |||||
* | Fix the use of abbreviations for preprocessable options on the CLI (#6820) | Daniël van Noord | 2022-06-03 | 1 | -10/+33 |
| | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Remove some words from custom dictionary and update spelling | Daniël van Noord | 2022-04-26 | 1 | -1/+1 |
| | |||||
* | Fix handling of default value for extend action in Python 3.7 | DudeNr33 | 2022-04-24 | 1 | -1/+1 |
| | |||||
* | Fix short ``-v`` flag and add ``metavar`` support to ``_CallableArgument`` ↵ | Daniël van Noord | 2022-04-19 | 1 | -1/+3 |
| | | | | (#6386) | ||||
* | Add some typing to ``pylint/lint`` (#6376) | Daniël van Noord | 2022-04-18 | 1 | -2/+2 |
| | |||||
* | Remove ``choices`` from ``confidence`` | Daniël van Noord | 2022-04-15 | 1 | -11/+5 |
| | |||||
* | Use ``--py39-plus`` and ``--full-reorder`` in ``python-typing-update`` (#6313) | Daniël van Noord | 2022-04-14 | 1 | -1/+2 |
| | |||||
* | Add classifications to TODOs across codebase | Daniël van Noord | 2022-04-14 | 1 | -1/+1 |
| | |||||
* | Add ``_ArgumentsManager.set_option`` and deprecate old option setters (#6299) | Daniël van Noord | 2022-04-14 | 1 | -1/+1 |
| | |||||
* | Use ``python-typing-update`` on ``pylint/config`` directory (#6307) | Daniël van Noord | 2022-04-14 | 1 | -20/+21 |
| | |||||
* | Create ``_ExtendArgument`` | Daniël van Noord | 2022-04-14 | 1 | -1/+15 |
| | |||||
* | Fix handling of rich types in ``ini`` and ``toml`` files | Daniël van Noord | 2022-04-11 | 1 | -0/+2 |
| | |||||
* | Use ``namespace`` in two more checkers | Daniël van Noord | 2022-04-11 | 1 | -0/+3 |
| | |||||
* | Handle missing keys in option dictionaries | Daniël van Noord | 2022-04-11 | 1 | -19/+30 |
| | |||||
* | Handle ``group`` in optdicts and ``option_groups`` (#6207) | Daniël van Noord | 2022-04-06 | 1 | -2/+6 |
| | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Allow creation of deprecated and renamed options | Daniël van Noord | 2022-04-04 | 1 | -5/+48 |
| | |||||
* | Move preprocessing of arguments into ``config`` directory | Daniël van Noord | 2022-04-04 | 1 | -1/+100 |
| | |||||
* | Refactor the help message | Daniël van Noord | 2022-04-04 | 1 | -1/+11 |
| | |||||
* | Change naming and imports of ``_Arguments`` | Daniël van Noord | 2022-04-04 | 1 | -3/+3 |
| | |||||
* | Add TODOs for the final keys of the ``optdicts`` | Daniël van Noord | 2022-04-04 | 1 | -9/+4 |
| | |||||
* | Create ``_CallableArgument`` | Daniël van Noord | 2022-04-04 | 1 | -2/+10 |
| | |||||
* | Handle ``optdict`` flags and ``confidence`` option better | Daniël van Noord | 2022-04-04 | 1 | -3/+16 |
| | |||||
* | Remove ``metavar`` and ``choices`` from ``_StoreTrueArgument`` | Daniël van Noord | 2022-04-02 | 1 | -2/+0 |
| | |||||
* | Add a ``_StoreTrueArgument`` class | Daniël van Noord | 2022-04-02 | 1 | -4/+16 |
| | |||||
* | Move ``_parse_rich_type_value`` to ``utils`` | Daniël van Noord | 2022-04-02 | 1 | -0/+7 |
| | |||||
* | Create an `Argument` class and allow convertion of optdict into them (#5584) | Daniël van Noord | 2022-03-29 | 1 | -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 |