diff options
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r-- | .pre-commit-config.yaml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5700645..620c5be 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,6 +12,15 @@ repos: rev: v1.9.0 hooks: - id: python-check-blanket-noqa + - repo: https://github.com/PyCQA/isort + rev: 5.10.1 + hooks: + - id: isort + - repo: https://github.com/psf/black + rev: 22.3.0 + hooks: + - id: black + language_version: "3.10" - repo: https://github.com/PyCQA/flake8 rev: &flake8_version 4.0.1 hooks: @@ -21,10 +30,7 @@ repos: - flake8-annotations~=2.7 - flake8-bugbear==22.4.25 - flake8-docstrings~=1.4 - - flake8-import-order~=0.18,!=0.18.0 - - flake8-quotes~=3.3 - flake8-string-format~=0.3.0 - - flake8-tidy-imports~=4.5 - flake8-todo~=0.7 - pep8-naming~=0.12.1 - pydocstyle~=6.1,!=6.1.0 |