-
Notifications
You must be signed in to change notification settings - Fork 46
/
.pre-commit-config.yaml
173 lines (172 loc) · 5.43 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# https://pre-commit.com/hooks.html
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: detect-private-key
exclude: ^docker/config/haproxy_dev/localhost\.pem$
- id: check-merge-conflict
- id: check-ast
exclude: ^geoportal/c2cgeoportal_geoportal/scaffolds/[a-z_]+/{{cookiecutter\.project}}/
- id: debug-statements
exclude: ^geoportal/c2cgeoportal_geoportal/scaffolds/[a-z_]+/{{cookiecutter\.project}}/
- id: check-toml
- id: check-yaml
exclude: |-
(?x)^(
geoportal/c2cgeoportal_geoportal/scaffolds/[a-z_]+/{{cookiecutter\.project}}/
|secrets\.yml$
)
- id: check-json
- id: end-of-file-fixer
exclude: ^ci/tileindex/SRTM2056\.prj$
- id: trailing-whitespace
args:
- --markdown-linebreak-ext=.md
- id: mixed-line-ending
args:
- --fix=lf
- id: check-case-conflict
- id: check-docstring-first
- id: check-shebang-scripts-are-executable
exclude: ^.*/setup.py$
- id: check-symlinks
- id: fix-byte-order-marker
- repo: https://github.com/sbrunner/hooks
rev: 1.1.2
hooks:
- id: copyright
- id: workflows-require-timeout
- id: poetry-lock
exclude: ^geoportal/c2cgeoportal_geoportal/scaffolds/[a-z_]+/{{cookiecutter\.project}}/
additional_dependencies:
- poetry==1.8.4 # pypi
- id: npm-lock
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
exclude: |-
(?x)^(
(.*/)?package-lock\.json$
|geoportal/tests/data/dem4\..*
|(.*/)?poetry\.lock$
)
args:
- --ignore-words=.github/spell-ignore-words.txt
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
hooks:
- id: prettier
additional_dependencies:
- [email protected] # npm
- [email protected] # npm
- [email protected] # npm
exclude: |-
(?x)(
^geoportal/c2cgeoportal_geoportal/scaffolds/[a-z_]+/{{cookiecutter\.project}}/
|^ci/changelog\.yaml$
|.*\.pt$
|^geoportal/tests/data/tinyows_.*\.xml$
|^CHANGELOG\.md$
)
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: git-check
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.29.4
hooks:
- id: check-github-workflows
- id: check-renovate
additional_dependencies:
- pyjson5==1.6.7 # pypi
- id: check-github-actions
- id: check-jsonschema
name: Check GitHub Workflows set timeout-minutes
files: ^\.github/workflows/[^/]+$
types:
- yaml
args:
- --builtin-schema
- github-workflows-require-timeout
- repo: https://github.com/sirwart/ripsecrets
rev: v0.1.8
hooks:
- id: ripsecrets
exclude: |-
(?x)^(
docker/config/haproxy_dev/localhost\.pem
|geoportal/c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter\.project}}/mapserver/data/TM_EUROPE_BORDERS-0.3\.sql
)$
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.0
hooks:
# The script that will run on the project host
- id: pyupgrade
args:
- --py38-plus
files: |-
(?x)^(
geoportal/c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter\.project}}/(build
|scripts/.*)
|scripts/(get-version
|upgrade)
)$
# All other
- id: pyupgrade
args:
- --py310-plus
# geoportal/c2cgeoportal_geoportal/views/theme\.py is present because of issue:
# https://bugs.launchpad.net/lxml/+bug/2079018
exclude: |-
(?x)^(
geoportal/c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter\.project}}/(build
|scripts/.*)
|scripts/(get-version
|upgrade)
|geoportal/c2cgeoportal_geoportal/views/theme\.py
)$
- repo: https://github.com/PyCQA/autoflake
rev: v2.3.1
hooks:
- id: autoflake
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
exclude: |-
(?x)^(
commons/c2cgeoportal_commons/alembic/script\.py\.mako
|.*\.rst
|.*\.rst\.tmpl
|geoportal/c2cgeoportal_geoportal/scaffolds/advance_create/{{cookiecutter.project}}/geoportal/{{cookiecutter.package}}_geoportal/__init__\.py
)$
- repo: https://github.com/PyCQA/prospector
rev: v1.13.0
hooks:
- id: prospector
args:
- --tool=pydocstyle
- --die-on-tool-error
- --output-format=pylint
additional_dependencies:
- prospector-profile-duplicated==1.6.0 # pypi
- prospector-profile-utils==1.9.1 # pypi
- repo: https://github.com/sbrunner/jsonschema-validator
rev: 0.3.2
hooks:
- id: jsonschema-validator
files: ^ci/config\.yaml$
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 39.8.0
hooks:
- id: renovate-config-validator