environment_variable.py 415 B

1234567891011
  1. # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  2. # For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
  3. # Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
  4. import warnings
  5. from pylint.config.find_default_config_files import find_pylintrc
  6. with warnings.catch_warnings():
  7. warnings.simplefilter("ignore")
  8. PYLINTRC = find_pylintrc()