Skip to content

Commit

Permalink
adjust exclude pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
KedoKudo committed Jan 31, 2025
1 parent 8fe392e commit 2bda518
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ repos:
args: [--allow-multiple-documents]
exclude: "conda.recipe/meta.yaml"
- id: end-of-file-fixer
exclude: "tests/data/.*"
exclude: "(tests/data/.*|src/pleiades/data/.*)"
- id: trailing-whitespace
exclude: "tests/data/.*"
exclude: "(tests/data/.*|src/pleiades/data/.*)"
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.3
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
exclude: "(tests/data/.*|legacy/.*)"
exclude: "(tests/data/.*|legacy/.*|src/pleiades/data/.*)"
- id: ruff-format
exclude: "(tests/data/.*|legacy/.*)"
exclude: "(tests/data/.*|legacy/.*|src/pleiades/data/.*)"
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
exclude: "(tests/data/.*|.*\\.ipynb)|poetry.lock|src/pleiades/data/.*"
exclude: "(tests/data/.*|.*\\.ipynb|poetry.lock|src/pleiades/data/.*)"
args: ["--ignore-words-list=DELTE"]

0 comments on commit 2bda518

Please sign in to comment.