We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea17b45 commit f6147a6Copy full SHA for f6147a6
Justfile
@@ -6,6 +6,9 @@ fmt:
6
lint:
7
find src -type f -name "*.cpp" -print0 | parallel -q0 --eta clang-tidy --load={{ env_var("TIDYFOX") }}
8
9
+lint-changed:
10
+ git diff --name-only HEAD | grep "^.*\.cpp\$" | parallel --eta clang-tidy --load={{ env_var("TIDYFOX") }}
11
+
12
configure target='debug' *FLAGS='':
13
cmake -GNinja -B {{builddir}} \
14
-DCMAKE_BUILD_TYPE={{ if target == "debug" { "Debug" } else { "RelWithDebInfo" } }} \
0 commit comments