-
Notifications
You must be signed in to change notification settings - Fork 475
/
.pre-commit-config.yaml
44 lines (44 loc) · 1.12 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
ci:
autofix_prs: false
autoupdate_schedule: monthly
repos:
# shared across repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-shebang-scripts-are-executable
- id: check-symlinks
- id: check-xml
- id: check-yaml
- id: destroyed-symlinks
- id: end-of-file-fixer
- id: mixed-line-ending
args: ['--fix=lf']
- id: trailing-whitespace
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.29.3
hooks:
- id: check-github-workflows
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.5
hooks:
- id: forbid-tabs
exclude_types:
- json
- id: remove-tabs
exclude_types:
- json
# specific to dfhack:
- repo: local
hooks:
- id: authors-rst
name: Check Authors.rst
language: python
entry: python3 ci/authors-rst.py
files: docs/about/Authors\.rst
pass_filenames: false
exclude: '^(depends/|data/.*\.json$|.*\.diff$|.*\.dfstock$)'