forked from nilearn/nilearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
100 lines (92 loc) · 3.46 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
# 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_demo_more_plotting.py
| examples/01_plotting/plot_demo_plotting.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/docs.py
| nilearn/_utils/tests/test_data_gen.py
| nilearn/_utils/data_gen.py
| nilearn/reporting/html_report.py
| nilearn/reporting/tests/test_html_report.py
| nilearn/glm/contrasts.py
| nilearn/glm/first_level/first_level.py
| nilearn/glm/tests/test_contrasts.py
| nilearn/glm/tests/test_first_level.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/displays/_axes.py
| nilearn/plotting/glass_brain.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_stat_map.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
| nilearn/tests/test_masking.py
| nilearn/tests/test_signal.py
)$
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-ast
- id: check-case-conflict
- id: check-json
- id: check-merge-conflict
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-toml
- 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.0"
hooks:
- id: flynt
- repo: https://github.com/asottile/pyupgrade
rev: v3.9.0
hooks:
- id: pyupgrade
args: [--py36-plus]
- repo: https://github.com/psf/black
rev: 23.7.0
hooks:
- id: black
args: ["--config", "pyproject.toml"]
- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
hooks:
- id: codespell
args: ["--toml", "pyproject.toml"]
additional_dependencies: [tomli]
- repo: https://github.com/pyCQA/flake8
rev: 6.0.0
hooks:
- id: flake8
args: ["--config", ".flake8", "--verbose"]
additional_dependencies: [flake8-docstrings, flake8-use-fstring]