Adds commenting and a little organization to the hook configuration

This commit is contained in:
Trenton Holmes 2022-03-03 09:35:00 -08:00
parent e8ddb0c427
commit cc702cbdfa

View File

@ -3,6 +3,7 @@
# See https://pre-commit.com/hooks.html for a listing of possible hooks # See https://pre-commit.com/hooks.html for a listing of possible hooks
repos: repos:
# General hooks
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0 rev: v4.1.0
hooks: hooks:
@ -34,6 +35,7 @@ repos:
- ts - ts
- markdown - markdown
exclude: "(^Pipfile\\.lock$)" exclude: "(^Pipfile\\.lock$)"
# Python hooks
- repo: https://github.com/asottile/reorder_python_imports - repo: https://github.com/asottile/reorder_python_imports
rev: v2.7.1 rev: v2.7.1
hooks: hooks:
@ -43,6 +45,7 @@ repos:
rev: "v1.3.0" rev: "v1.3.0"
hooks: hooks:
- id: yesqa - id: yesqa
exclude: "(migrations)"
- repo: https://github.com/asottile/add-trailing-comma - repo: https://github.com/asottile/add-trailing-comma
rev: "v2.2.1" rev: "v2.2.1"
hooks: hooks:
@ -57,19 +60,21 @@ repos:
args: args:
- --max-line-length=88 - --max-line-length=88
- "--ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203" - "--ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203"
- repo: https://github.com/lovesegfault/beautysh
rev: v6.2.1
hooks:
- id: beautysh
- repo: https://github.com/psf/black - repo: https://github.com/psf/black
rev: 22.1.0 rev: 22.1.0
hooks: hooks:
- id: black - id: black
exclude: "(migrations)" exclude: "(migrations)"
# Dockerfile hooks
- repo: https://github.com/pryorda/dockerfilelint-precommit-hooks - repo: https://github.com/pryorda/dockerfilelint-precommit-hooks
rev: "v0.1.0" rev: "v0.1.0"
hooks: hooks:
- id: dockerfilelint - id: dockerfilelint
# Shell script hooks
- repo: https://github.com/lovesegfault/beautysh
rev: v6.2.1
hooks:
- id: beautysh
- repo: https://github.com/shellcheck-py/shellcheck-py - repo: https://github.com/shellcheck-py/shellcheck-py
rev: "v0.8.0.4" rev: "v0.8.0.4"
hooks: hooks: