From a76ab91cbb9574abe487960cf7306447fa5dfaae Mon Sep 17 00:00:00 2001 From: Ryan Friedman Date: Sun, 12 Mar 2023 09:48:14 -0600 Subject: [PATCH] pre-commit: Disable isort and mypy temporarily * Solves #23187 Signed-off-by: Ryan Friedman --- .pre-commit-config.yaml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9c8f9d021c..ef511f9df7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -36,18 +36,19 @@ repos: - id: check-xml - id: check-yaml -# Use to sort python imports by name and put system import first. - - repo: https://github.com/pycqa/isort - rev: 5.10.1 - hooks: - - id: isort - args: [--check-only] - name: isort (python) +# Disable isort and mypy temporarily due to config conflicts +# # Use to sort python imports by name and put system import first. +# - repo: https://github.com/pycqa/isort +# rev: 5.10.1 +# hooks: +# - id: isort +# args: [--check-only] +# name: isort (python) -# Use to check python typing to show errors. - - repo: https://github.com/pre-commit/mirrors-mypy - rev: 'v0.950' - hooks: - - id: mypy - args: [--no-strict-optional, --ignore-missing-imports] - additional_dependencies: [types-PyYAML, types-requests] +# # Use to check python typing to show errors. +# - repo: https://github.com/pre-commit/mirrors-mypy +# rev: 'v0.950' +# hooks: +# - id: mypy +# args: [--no-strict-optional, --ignore-missing-imports] +# additional_dependencies: [types-PyYAML, types-requests]