Created
February 8, 2022 05:54
-
-
Save C47D/2ded545ddd39f2cd1b5895a6d773a556 to your computer and use it in GitHub Desktop.
LVGL pre-commit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
repos: | |
- repo: https://github.com/pre-commit/pre-commit-hooks | |
rev: v3.2.0 | |
hooks: | |
- id: trailing-whitespace | |
- repo: local | |
hooks: | |
# Run astyle over the staged files with c and h extension found in the directories | |
# listed in the files regex pattern. Ignoring the files in the exclude pattern. | |
- id: format-source | |
name: Formatting source files | |
entry: astyle --options=scripts/code-format-per-file.cfg | |
stages: [ commit ] | |
language: system | |
pass_filenames: true | |
verbose: true | |
files: | | |
(?x)^( | |
src/ | | |
tests/src/test_cases/ | |
) | |
exclude: | | |
(?x)^( | |
src/extra/libs/ | | |
src/lv_conf_internal.h | |
) | |
types_or: ["c", "header"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment