forked from maplibre/maplibre-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
56 lines (49 loc) · 1.64 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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-toml
- id: check-yaml
args: [ --allow-multiple-documents, --unsafe ]
- id: end-of-file-fixer
- id: mixed-line-ending
args: [ --fix=lf ]
# these are generated by Gradle
exclude: 'gradlew\.bat$'
- id: trailing-whitespace
# FIXME: these autogenerate files contain trailing whitespace. Need to fix generator.
exclude: 'platform/android/MapLibreAndroid/src/main/java/org/maplibre/android/(location/LocationIndicatorLayer|style/layers/PropertyFactory)\.java$'
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.7
hooks:
- id: clang-format
files: '.*\.(hpp|cpp|h)'
exclude: 'vendor/.*'
- repo: https://github.com/keith/pre-commit-buildifier
rev: 8.0.1
hooks:
- id: buildifier
- repo: https://github.com/Mateusz-Grzelinski/actionlint-py
rev: v1.7.7.23
hooks:
- id: actionlint
additional_dependencies: [ shellcheck-py ]
- repo: https://github.com/nicklockwood/SwiftFormat
rev: "0.55.5"
hooks:
- id: swiftformat
args: [ --swiftversion, "5.8" ]
- repo: local
hooks:
- id: rustfmt
name: rustfmt
entry: sh -c 'cd rustutils && cargo fmt --all'
language: rust
types: [ rust ]
ci:
# sometimes fails https://github.com/keith/pre-commit-buildifier/issues/13
skip: [ buildifier ]
autoupdate_schedule: monthly