Files
galaxy/.pre-commit-config.yaml.sample
T
mvdbeek a2d11cef42 Ignore yaml and json in prettier pre-commit hook
The .prettierignore file appears to not be respected,
but I think this is the only relevant discrepancy with .prettierignore,
as we either won't change the remaining files or they're already in
.gitignore.
2025-08-27 16:10:41 +02:00

51 lines
1.4 KiB
Plaintext

repos:
- repo: https://github.com/psf/black
rev: 24.1.1
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 7.0.0
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
hooks:
- id: prettier
additional_dependencies:
- prettier@3.6.2 # SEE: https://github.com/pre-commit/pre-commit/issues/3133
exclude_types: # .prettierignore ignored apparently ...
- yaml
- json
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0 # Use the ref you want to point at
hooks:
- id: trailing-whitespace
- id: check-merge-conflict
- id: check-symlinks
- id: destroyed-symlinks
- id: end-of-file-fixer
- id: name-tests-test
- repo: https://github.com/detailyang/pre-commit-shell
rev: 1.0.5
hooks:
- id: shell-lint
args: [--format=json]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.27.4
hooks:
- id: check-github-workflows
- repo: local
hooks:
- id: eslint
name: client eslint
language: system
files: ^client/
entry: .ci/eslint_wrapper.sh
types: [file]
types_or: [javascript, jsx, ts, tsx, vue]
# - repo: https://github.com/pycqa/isort
# rev: 5.10.1
# hooks:
# - id: isort
# name: isort (python)