forked from MapServer/MapServer
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.pre-commit-config.yaml
32 lines (32 loc) · 953 Bytes
/
.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
repos:
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/timothycrosley/isort
rev: 5.12.0
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: 'v15.0.7'
hooks:
- id: clang-format
exclude_types: [c#, java, javascript, json, proto]
exclude: >
(?x)^(
build |
src/renderers/agg/ |
src/flatgeobuf/ |
src/opengl/ |
src/third-party/ |
src/maplexer.c |
src/mapparser.c |
src/mapparser.h |
src/dejavu-sans-condensed.h |
src/uthash.h
)