Skip to content

Commit 6a913df

Browse files
committed
Fix
1 parent fa691c3 commit 6a913df

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

taskfiles/deps.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ version: "3"
33
vars:
44
G_CATCH2_LIB_NAME: "Catch2"
55
G_CATCH2_WORK_DIR: "{{.G_DEPS_DIR}}/{{.G_CATCH2_LIB_NAME}}"
6-
G_QUICKCPPLIB_LIB_NAME: "quickcpplib"
7-
G_QUICKCPPLIB_WORK_DIR: "{{.G_DEPS_DIR}}/{{.G_QUICKCPPLIB_LIB_NAME}}"
86

97
tasks:
108
install-all:

taskfiles/lint-cpp.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ tasks:
2020
desc: "Runs the C++ linters that identify formatting issues."
2121
sources: &cpp_format_src_files
2222
- "{{.G_LINT_VENV_CHECKSUM_FILE}}"
23-
- "{{.G_CPP_SRC_DIR}}"
23+
- "{{.G_CPP_SRC_DIR}}/**/*.cpp"
24+
- "{{.G_CPP_SRC_DIR}}/**/*.h"
25+
- "{{.G_CPP_SRC_DIR}}/**/*.hpp"
2426
- "{{.ROOT_DIR}}/.clang-format"
2527
- "{{.TASKFILE}}"
2628
deps:

0 commit comments

Comments
 (0)