summaryrefslogtreecommitdiff
path: root/pylint/config/_pylint_config/__init__.py
blob: 8d36bd88bde2a2c8d921924e317e13d5b6149617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt

"""Everything related to the 'pylint-config' command.

Everything in this module is private.
"""

from pylint.config._pylint_config.main import _handle_pylint_config_commands
from pylint.config._pylint_config.setup import _register_generate_config_options

__all__ = ("_handle_pylint_config_commands", "_register_generate_config_options")