We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 160f296 commit 296a89cCopy full SHA for 296a89c
.clang-format
@@ -0,0 +1,4 @@
1
+BasedOnStyle: LLVM
2
+IndentWidth: 4
3
+ColumnLimit: 100
4
+SortIncludes: false
.github/workflows/clang-format-lint.yml
@@ -0,0 +1,25 @@
+name: clang-format-lint
+
+on:
+ push:
5
+ paths:
6
+ - "app/boards/**/*.c"
7
+ - "app/include/**/*.h"
8
+ - "app/src/**"
9
+ pull_request:
10
11
12
13
14
15
+jobs:
16
+ build:
17
+ runs-on: ubuntu-latest
18
+ name: clang-format lint
19
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - uses: DoozyX/[email protected]
23
+ with:
24
+ source: "./app"
25
+ extensions: "h,c"
0 commit comments