diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 32088ec0..031003b6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,19 +1,25 @@ exclude: ".*/data/.*" repos: - - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 - hooks: - - id: trailing-whitespace - exclude: '.*\.svg' - - id: end-of-file-fixer - exclude: '.*\.svg' - - id: check-yaml - - id: check-json - - id: check-toml - - id: check-added-large-files - - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.5 - hooks: - - id: ruff - args: [ --fix ] - - id: ruff-format +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.4.0 + hooks: + - id: trailing-whitespace + exclude: '.*\.svg' + - id: end-of-file-fixer + exclude: '.*\.svg' + - id: check-yaml + - id: check-json + - id: check-toml + - id: check-added-large-files +- repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.6.5 + hooks: + - id: ruff + args: [--fix] + - id: ruff-format +- repo: https://github.com/codespell-project/codespell + rev: v2.3.0 + hooks: + - id: codespell + additional_dependencies: + - tomli diff --git a/CHANGES.md b/CHANGES.md index 18f265c8..574e97b1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,7 +11,7 @@ This new minor release includes a few bug fixes, such as excluding MCRIBS from s * FIX: MCRIBS auto surface reconstruction logic (#399) * FIX: Do not force masking of anatomicals when using `--derivatives` (#400) -### Interals / Maintenance +### Internals / Maintenance * MAINT: Revisit warnings filter (#396) * MAINT: Automate testing with tox (#404) * MAINT: Port over parser arguments and tests from fmriprep (#401)