-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(script): add pre-commit configuration for code formatting (lvgl#…
…3092) * Add initial pre-commit configuration for code formatting * chore: Move --recursive switch from cfg file to script * pre-commit: Update format-source hook to use code-format.cfg Also remove the code-format-per-file.cfg file as it's now unused * docs: Add section about pre-commit
- Loading branch information
Showing
4 changed files
with
69 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
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.cfg --ignore-exclude-errors | ||
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"] |
This file contains 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
This file contains 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
This file contains 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