frappe_docker/.pre-commit-config.yaml
github-actions[bot] b3616b87a9
chore(deps): update pre-commit hooks ($(date +'%Y-%m-%d')) (#9)
Co-authored-by: digikwal <79085106+digikwal@users.noreply.github.com>
2025-07-30 10:57:14 +02:00

83 lines
2 KiB
YAML

---
repos:
- repo: local
hooks:
- id: check-file-structure
name: Check File Structure
entry: python3 -m scripts.pre_commit_check
language: system
types: [file]
- id: hadolint
name: Hadolint Dockerfile Linter
entry: docker run --rm -v ${PWD}:/mnt hadolint/hadolint hadolint
language: system
types: [dockerfile]
files: ^Dockerfile$
- id: docker-compose-lint
name: Docker Compose Linter (dclint)
entry: docker run -t --rm -v ${PWD}:/app zavoloklom/dclint .
language: system
types: [yaml]
files: ^docker-compose\.ya?ml$
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: check-toml
- id: check-yaml
- id: check-json
- id: check-added-large-files
args: ["--maxkb=102400"]
- id: check-merge-conflict
- repo: https://github.com/psf/black
rev: 25.1.0
hooks:
- id: black
- repo: https://github.com/asottile/pyupgrade
rev: v3.20.0
hooks:
- id: pyupgrade
args: [--py37-plus]
- repo: https://github.com/pycqa/isort
rev: 6.0.1
hooks:
- id: isort
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.8
hooks:
- id: prettier
additional_dependencies:
- prettier@3.5.2
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
args:
- -L
- "ro"
- repo: local
hooks:
- id: shfmt
name: shfmt
language: golang
additional_dependencies: [mvdan.cc/sh/v3/cmd/shfmt@latest]
entry: shfmt
args: [-w]
types: [shell]
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
args: [-x]