Skip to content
Snippets Groups Projects
.pre-commit-config.yaml 753 B
Newer Older
repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v3.4.0
    hooks:
      - id: check-added-large-files
      - id: check-ast
      - id: check-merge-conflict
      - id: check-yaml
      - id: detect-private-key
      - id: end-of-file-fixer
      - id: trailing-whitespace
Mark's avatar
Mark committed
      - id: debug-statements
  - repo: https://github.com/jumanjihouse/pre-commit-hooks
    rev: 2.1.5
    hooks:
      - id: shellcheck
      - id: shfmt
        args:
          - "-i"
          - "2"
          - "-ci"
  - repo: https://github.com/hadolint/hadolint
    rev: v1.23.0
    hooks:
Mark's avatar
Mark committed
  - repo: https://github.com/timothycrosley/isort
    # Sorts import statements for you
Mark's avatar
Mark committed
    rev: 5.0.9
    hooks:
      - id: isort