aboutsummaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: 658ff571f581307e2e50e5eae5c843295d96c0c9 (plain)
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
# 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)^(
              demos/ |
              examples/ |
              src/ |
              tests/
          )
        exclude: |
          (?x)^(
              src/libs/ |
              src/lv_conf_internal.h |
              tests/test_images
           )
        types_or: ["c", "header"]
-   repo: https://github.com/crate-ci/typos
    rev: v1.16.20
    hooks:
    -   id: typos
        exclude: |
            (?x)^(
                src/libs/
             )