ruff/crates
Martin Fischer 0e4d5eeea7 Implement config subcommand
The synopsis is as follows.

List all top-level config keys:

    $ ruff config
    allowed-confusables
    builtins
    cache-dir
    ... etc.

List all config keys in a specific section:

    $ ruff config mccabe
    max-complexity

Describe a specific config option:

    $ ruff config mccabe.max-complexity
    The maximum McCabe complexity to allow before triggering `C901` errors.

    Default value: 10
    Type: int
    Example usage:
    ```toml
    # Flag errors (`C901`) whenever the complexity level exceeds 5.
    max-complexity = 5
    ```
2023-02-11 23:43:09 -05:00
..
flake8_to_ruff Bump version to 0.0.245 2023-02-10 22:15:27 -05:00
ruff refactor: Move name out of OptionField & OptionGroup 2023-02-11 23:43:09 -05:00
ruff_cli Implement config subcommand 2023-02-11 23:43:09 -05:00
ruff_dev refactor: Move name out of OptionField & OptionGroup 2023-02-11 23:43:09 -05:00
ruff_macros refactor: Move name out of OptionField & OptionGroup 2023-02-11 23:43:09 -05:00
ruff_python Bump version to 0.0.245 2023-02-10 22:15:27 -05:00