1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: mixed-line-ending
args: [--fix=lf]
- id: check-merge-conflict
- repo: https://github.com/PyCQA/isort
rev: 6.0.1
hooks:
- id: isort
types_or: [python, cython]
args: [--line-length=110, --force-single-line-imports, --profile=black]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.8
hooks:
- id: ruff
types: [python]
exclude: '_\.py$'
args: [--line-length=110, --fix, --exit-non-zero-on-fix, --preview]
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.29.0
hooks:
- id: yamllint
args: [--strict, -d, '{extends: default, rules: {line-length: disable}}']
types: [yaml]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: pretty-format-json
args: [--autofix]
types: [json]
exclude: '\.geojson$'
- repo: https://github.com/MarcoGorelli/cython-lint
rev: v0.16.6
hooks:
- id: cython-lint
types: [cython]
- id: double-quote-cython-strings
types: [cython]
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.7
hooks:
- id: clang-format
types: [c, c++]
exclude: 'src/_eckit/_.*\.(h|cpp)'
|