forked from Remi-Gau/bidsNighres
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
36 lines (36 loc) · 920 Bytes
/
.pre-commit-config.yaml
File metadata and controls
36 lines (36 loc) · 920 Bytes
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
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: check-yaml
- id: check-added-large-files
- id: end-of-file-fixer
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.3.0
hooks:
- id: black
- repo: https://github.com/ikamensh/flynt/
rev: 1.0.6
hooks:
- id: flynt
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.16.0
hooks:
- id: reorder-python-imports
- repo: https://github.com/jumanjihouse/pre-commit-hook-yamlfmt
rev: 0.2.3
hooks:
- id: yamlfmt
args:
- --mapping
- '4'
- --sequence
- '4'
- --offset
- '0'
ci:
autoupdate_commit_msg: 'chore: update pre-commit hooks'
autoupdate_schedule: quarterly
autofix_commit_msg: 'style: pre-commit fixes'