We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97a867b commit 3efbd1eCopy full SHA for 3efbd1e
justfile
@@ -17,6 +17,7 @@ sourceBuildTestDir := "build-tests-QOwnNotes"
17
18
alias fix-linting := clang-format
19
alias linter-fix := clang-format
20
+alias fix-cmake-format := cmake-format-fix
21
alias trace-process := process-trace
22
alias test := src-test
23
alias download-translations := translations-download
@@ -144,6 +145,11 @@ src-build-run: src-build src-run
144
145
clang-format:
146
./scripts/clang-format-project.sh
147
148
+# Fix formatting of the source CMake file
149
+[group('linter')]
150
+cmake-format-fix:
151
+ cmake-format -i src/CMakeLists.txt
152
+
153
# Check links in the markdown files
154
[group('linter')]
155
link-check:
0 commit comments