# See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks fail_fast: false repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v3.2.0 hooks: - id: trailing-whitespace exclude: .*\.(md|json) - id: end-of-file-fixer exclude: .*\.(json) - id: check-yaml - id: check-added-large-files args: [--maxkb=5120] # 2 MB - repo: https://github.com/psf/black rev: 22.10.0 hooks: - id: black name: Formatting args: ["./oxo.py"] - repo: https://github.com/pycqa/isort rev: 5.10.1 hooks: - id: isort name: Import order args: ["--profile=black", "./oxo"] - repo: https://github.com/PyCQA/autoflake rev: v1.4 hooks: - id: autoflake name: Import pruning args: ["-i", "-r","--remove-unused-variables","--ignore-init-module-imports"]