-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
74 lines (61 loc) · 2.54 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
74 lines (61 loc) · 2.54 KB
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
---
default_stages: [pre-commit, pre-push]
repos:
#############################################################################
# Meta #
#############################################################################
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
# Identity prints all arguments (files) passed to it; for testing
# - id: identity
#############################################################################
# Core Hooks #
#############################################################################
- 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-merge-conflict
- id: detect-private-key
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: mixed-line-ending
- id: trailing-whitespace
#############################################################################
# Git #
#############################################################################
- repo: https://github.com/commitizen-tools/commitizen
rev: v4.8.3
hooks:
- id: commitizen
- repo: https://github.com/jorisroovers/gitlint
rev: v0.19.1
hooks:
- id: gitlint
#############################################################################
# GitHub #
#############################################################################
- repo: https://github.com/rhysd/actionlint
rev: v1.7.7
hooks:
- id: actionlint
#############################################################################
# ClangFormat #
#############################################################################
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v20.1.6
hooks:
- id: clang-format
#############################################################################
# OCamlFormat #
#############################################################################
- repo: local
hooks:
- id: ocaml-format
name: OCaml format
entry: dune fmt
language: system
pass_filenames: false