mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-08-28 18:08:19 +08:00
5bcdc1b1e7
prettier rewrites doc/source/dev/collection_semantics.md, which is generated
from collection_semantics.yml by semantics.py. Two problems: it fights the
generator, and it corrupts the content. Its markdown parser does not
recognize $...$ math spans, so it strips the \_ escapes LaTeX needs there -
\text{paired\_or\_unpaired} becomes \text{paired_or_unpaired}. Running it
over the current file drops 36 escaped underscores to 5.
Only bites people who opt into this sample config; there is no
.pre-commit-config.yaml on dev, so CI never ran prettier here and the
committed doc has never been prettier-formatted.
exclude_types already notes .prettierignore is ignored, so this uses exclude.
Other markdown is unaffected.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01RuVLSKbSts49EWpNMcz7gP
59 lines
1.7 KiB
Plaintext
59 lines
1.7 KiB
Plaintext
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 26.1.0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.14.8
|
|
hooks:
|
|
- id: ruff
|
|
args: [--fix]
|
|
- 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
|
|
# Generated from collection_semantics.yml by semantics.py; prettier both
|
|
# fights the generator and strips \_ escapes that LaTeX math spans need.
|
|
exclude: ^doc/source/dev/collection_semantics\.md$
|
|
- 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)
|