third_party.pylibs.pylint.src/pylint/config/find_default_config_files.py
pre-commit-ci[bot] bf65862795
[pre-commit.ci] pre-commit autoupdate (#4438)
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/asottile/pyupgrade: v2.11.0 → v2.14.0](https://github.com/asottile/pyupgrade/compare/v2.11.0...v2.14.0)
- https://github.com/ambv/blackhttps://github.com/psf/black
- [github.com/psf/black: 21.4b0 → 21.4b2](https://github.com/psf/black/compare/21.4b0...21.4b2)
- https://github.com/Pierre-Sassoulas/black-disable-checker/: 1.0.0 → 1.0.1
- https://gitlab.com/pycqa/flake8https://github.com/PyCQA/flake8
- [github.com/PyCQA/flake8: 3.9.0 → 3.9.1](https://github.com/PyCQA/flake8/compare/3.9.0...3.9.1)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update pylint/config/find_default_config_files.py

Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
2021-05-03 20:07:40 +02:00

70 lines
2.2 KiB
Python

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
import configparser
import os
import toml
from toml.decoder import TomlDecodeError
def _toml_has_config(path):
with open(path) as toml_handle:
try:
content = toml.load(toml_handle)
except TomlDecodeError as error:
print(f"Failed to load '{path}': {error}")
return False
try:
content["tool"]["pylint"]
except KeyError:
return False
return True
def _cfg_has_config(path):
parser = configparser.ConfigParser()
parser.read(path, encoding="utf-8")
return any(section.startswith("pylint.") for section in parser.sections())
def find_default_config_files():
"""Find all possible config files."""
rc_names = ("pylintrc", ".pylintrc")
config_names = rc_names + ("pyproject.toml", "setup.cfg")
for config_name in config_names:
if os.path.isfile(config_name):
if config_name.endswith(".toml") and not _toml_has_config(config_name):
continue
if config_name.endswith(".cfg") and not _cfg_has_config(config_name):
continue
yield os.path.abspath(config_name)
if os.path.isfile("__init__.py"):
curdir = os.path.abspath(os.getcwd())
while os.path.isfile(os.path.join(curdir, "__init__.py")):
curdir = os.path.abspath(os.path.join(curdir, ".."))
for rc_name in rc_names:
rc_path = os.path.join(curdir, rc_name)
if os.path.isfile(rc_path):
yield rc_path
if "PYLINTRC" in os.environ and os.path.exists(os.environ["PYLINTRC"]):
if os.path.isfile(os.environ["PYLINTRC"]):
yield os.environ["PYLINTRC"]
else:
user_home = os.path.expanduser("~")
if user_home not in ("~", "/root"):
home_rc = os.path.join(user_home, ".pylintrc")
if os.path.isfile(home_rc):
yield home_rc
home_rc = os.path.join(user_home, ".config", "pylintrc")
if os.path.isfile(home_rc):
yield home_rc
if os.path.isfile("/etc/pylintrc"):
yield "/etc/pylintrc"