portfolio/.pre-commit-config.yaml
christiangoeschel 09f8d20eb2
All checks were successful
Pull Request Checks / commit-message-check (pull_request) Successful in 7s
Pull Request Checks / linting (pull_request) Successful in 1m18s
fix: Fix multi platform Docker build workflow
2025-02-28 05:25:42 -05:00

38 lines
1.1 KiB
YAML

# 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: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
# - id: check-yaml
- id: check-added-large-files
- id: check-executables-have-shebangs # ensures that (non-binary) executables have a shebang.
- id: check-shebang-scripts-are-executable # ensures that (non-binary) files with a shebang are executable.
# Shellcheck
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
# Dockerfile linter
- repo: https://github.com/pryorda/dockerfilelint-precommit-hooks
rev: v0.1.0
hooks:
- id: dockerfilelint
#- repo: https://github.com/pre-commit/mirrors-prettier
# rev: v4.0.0-alpha.8
#hooks:
# - id: prettier
# files: \.(js|ts|jsx|tsx|css|less|html|json|markdown|md|yaml|yml)$
# ruff for Python formatting
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.9
hooks:
- id: ruff
- id: ruff-format