--- # See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.4.0 hooks: - id: check-added-large-files - id: check-case-conflict - id: check-executables-have-shebangs - id: check-shebang-scripts-are-executable - id: check-symlinks - id: destroyed-symlinks - id: check-json - id: check-yaml - id: check-xml - id: check-toml - id: check-vcs-permalinks - id: check-merge-conflict - id: end-of-file-fixer exclude: ^(docs/locales/.*/LC_MESSAGES) - id: mixed-line-ending - id: trailing-whitespace - repo: https://github.com/asottile/pyupgrade rev: v3.2.2 hooks: - id: pyupgrade args: [--py37-plus] exclude: ^(api/.*/migrations/.*) - repo: https://github.com/psf/black rev: 22.10.0 hooks: - id: black - repo: https://github.com/pycqa/isort rev: 5.10.1 hooks: - id: isort - repo: https://github.com/pycqa/flake8 rev: 6.0.0 hooks: - id: flake8 - repo: https://github.com/pre-commit/mirrors-prettier rev: v2.7.1 hooks: - id: prettier files: \.(md|yml|yaml|json)$ - repo: https://github.com/codespell-project/codespell rev: v2.2.2 hooks: - id: codespell additional_dependencies: [tomli] - repo: https://github.com/shellcheck-py/shellcheck-py rev: v0.8.0.4 hooks: - id: shellcheck