-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
.pre-commit-config.yaml
69 lines (62 loc) · 1.54 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
# 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: v4.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
# Markdown
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.32.2
hooks:
- id: markdownlint-fix
args: [--ignore, "fastlane"]
# Python
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort
args: [--profile, black]
# Check GitHub workflows
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.1
hooks:
- id: check-github-workflows
# Local checks
- repo: local
hooks:
- id: codingstyle
name: codingstyle
entry: tools/apply-codingstyle
language: script
files: \.java$
- repo: local
hooks:
- id: po-update
name: po-update
language: system
files: \.(java|gdxui)$
entry: make po-update
pass_filenames: false
- repo: local
hooks:
- id: font-update
name: font-update
language: system
files: \.(po|ttc)$
entry: make font-update
pass_filenames: false
- repo: local
hooks:
- id: xml
name: xml
language: system
entry: xmllint --noout
files: \.(gdxui|tsx|tmx|xml|loc|its)$