-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
73 lines (67 loc) · 2.33 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
70
71
72
73
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
# Don't run pre-commit on files under third-party/
exclude: "^\
(third-party/.*)\
"
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-added-large-files # prevents giant files from being committed.
- id: check-case-conflict # checks for files that would conflict in case-insensitive filesystems.
- id: check-merge-conflict # checks for files that contain merge conflict strings.
- id: check-yaml # checks yaml files for parseable syntax.
- id: detect-private-key # detects the presence of private keys.
- id: end-of-file-fixer # ensures that a file is either empty, or ends with one newline.
exclude: ^test/data
- id: fix-byte-order-marker # removes utf-8 byte order marker.
- id: mixed-line-ending # replaces or checks mixed line ending.
- id: requirements-txt-fixer # sorts entries in requirements.txt.
- id: trailing-whitespace # trims trailing whitespace.
args: [--markdown-linebreak-ext=md]
- repo: https://github.com/ssciwr/clang-format-hook
rev: v16.0.2
hooks:
- id: clang-format
args: ["--style=file", "-i"] # Use the .clang-format file for configuration and apply all fixes
files: ^src/.*\.(c|h|cpp|hpp)$
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.42.0
hooks:
- id: markdownlint
args:
[
"--config",
".markdownlint.json",
"--ignore-path",
".markdownlintignore",
"--fix",
]
language: node
pass_filenames: true
files: ^website/.*
types:
- file
- markdown
- non-executable
# - repo: https://github.com/pocc/pre-commit-hooks
# rev: v1.3.5
# hooks:
# - id: clang-tidy
# files: (src|tests)/.*\.(c|h|cpp|hpp)$
# - id: cppcheck
# name: cppcheck
# entry: cppcheck
# language: system
# args:
# [
# --enable=all,
# --suppress=unusedFunction,
# --suppress=unmatchedSuppression,
# --suppress=missingIncludeSystem,
# --suppress=toomanyconfigs,
# --error-exitcode=1,
# --language=c++,
# ]
# files: \.(c|h|cpp|hpp)$