forked from prusa3d/Prusa-Firmware-Buddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
67 lines (67 loc) · 2.34 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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/dragomirecky/cmake-format-pre-commit-hook
rev: 'v0.6.0'
hooks:
- id: cmake-format # cmake formatter
files: (^|/)(CMakeLists.*|.*\.cmake|.*\.cmake.in)$
- repo: https://github.com/pre-commit/mirrors-yapf
rev: 'v0.27.0'
hooks:
- id: yapf # python formatter
- repo: local
hooks:
- id: clang-format
name: clang-format
description: This hook automatically checks and reformats changed files using clang-format formatter.
entry: './.dependencies/clang-format-9.0.0-noext/clang-format'
language: script
files: \.(h\+\+|h|hh|hxx|hpp|cuh|c|cc|cpp|cu|c\+\+|cxx|tpp|txx)$
args: ['-i', '-style=file']
- id: generate-cmake-presets
name: generate-cmake-presets
description: This hook generates CMakePresets.json file based on utils/presets/presets.json
entry: python utils/build.py --generate-cmake-presets --generate-bbf
files: (^|/)(.*.json)$
pass_filenames: false
language: python
language_version: python3
- id: generate-log-components-overview
name: log-components-doc-generate
description: This hook generate an overview of currently defined Log Components.
entry: python utils/logging/generate_overview.py
language: python
language_version: python3
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 'v2.4.0'
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: end-of-file-fixer
- id: mixed-line-ending
exclude: |
(?x)(
^tests/unit/lang/translator/(keys|cs|es|fr|de|pl|it)\.txt$|
^lib/printf|
^lib/inih/|
^lib/Marlin/|
^lib/Prusa-Error-Codes/|
^lib/TMCStepper/|
^lib/Middlewares/Third_Party/LwIP/|
^lib/jsmn/|
^lib/ESP/serial-flasher/|
^lib/ESP/lwesp/|
^lib/ESP/prusa/src/serial-flasher/serial_comm.c|
^lib/ESP/prusa/include/sockets/lwesp_netbuf.h|
^lib/ESP/prusa/include/sockets/lwesp_sockets.h|
^lib/ESP/prusa/include/sockets/lwesp_sockets_priv.h|
^lib/ESP/prusa/src/sockets/lwesp_netbuf.c|
^lib/ESP/prusa/src/sockets/lwesp_sockets.c|
^lib/Catch2/|
^lib/libsysbase/|
^lib/Segger|
^lib/tinyusb|
^lib/Middlewares/Third_Party/littlefs/|
^lib/Middlewares/Third_Party/mbedtls/
)