forked from nilearn/nilearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
119 lines (106 loc) · 3.7 KB
/
.pre-commit-config.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
exclude: |
(?x)^(
nilearn/datasets/tests/data/localizer_behavioural.tsv
| nilearn/externals/.*
| nilearn/plotting/data/js/.*js
| nilearn/_version.py
| examples/01_plotting/plot_3d_map_to_surface_projection.py
| examples/01_plotting/plot_surf_atlas.py
| examples/01_plotting/plot_surf_stat_map.py
| examples/01_plotting/plot_surface_projection_strategies.py
| examples/04_glm_first_level/plot_fiac_analysis.py
| examples/04_glm_first_level/plot_fixed_effects.py
| examples/04_glm_first_level/plot_localizer_surface_analysis.py
| examples/07_advanced/plot_surface_bids_analysis.py
| nilearn/_utils/helpers.py
| nilearn/_utils/data_gen.py
| nilearn/reporting/html_report.py
| nilearn/reporting/tests/test_html_report.py
| nilearn/interfaces/fmriprep/load_confounds_compcor.py
| nilearn/interfaces/fmriprep/tests/test_load_confounds_utils.py
| nilearn/interfaces/fmriprep/tests/test_load_confounds_strategy.py
| nilearn/interfaces/fmriprep/tests/utils.py
| nilearn/interfaces/fmriprep/tests/test_load_confounds.py
| nilearn/maskers/nifti_spheres_masker.py
| nilearn/maskers/nifti_labels_masker.py
| nilearn/plotting/html_surface.py
| nilearn/plotting/img_plotting.py
| nilearn/plotting/js_plotting_utils.py
| nilearn/plotting/surf_plotting.py
| nilearn/plotting/tests/test_html_surface.py
| nilearn/plotting/tests/test_surf_plotting.py
| nilearn/surface/surface.py
| nilearn/surface/tests/test_surface.py
)$
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-ast
- id: check-case-conflict
- id: check-json
- id: check-merge-conflict
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
args: [--profile, black]
- repo: https://github.com/ikamensh/flynt/
rev: 1.0.1
hooks:
- id: flynt
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py36-plus]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: rst-directive-colons
- id: rst-inline-touching-normal
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.10.0
hooks:
- id: black
args: [--config, pyproject.toml]
- repo: https://github.com/adamchainz/blacken-docs
rev: 1.16.0
hooks:
- id: blacken-docs
additional_dependencies:
- black==23.9.1
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
hooks:
- id: codespell
args: [--toml, pyproject.toml]
additional_dependencies: [tomli]
- repo: https://github.com/jumanjihouse/pre-commit-hook-yamlfmt
rev: 0.2.3
hooks:
- id: yamlfmt
args: [--mapping, '4', --sequence, '4', --offset, '0']
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.11.0
hooks:
- id: pretty-format-toml
args: [--autofix, --indent, '4']
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: rst-backticks
- repo: https://github.com/pyCQA/flake8
rev: 6.1.0
hooks:
- id: flake8
args: [--config, .flake8, --verbose]
additional_dependencies: [flake8-docstrings, flake8-use-fstring, flake8-functions]