diff --git a/lint-tasks.yml b/lint-tasks.yml index 8201d57a..c194545e 100644 --- a/lint-tasks.yml +++ b/lint-tasks.yml @@ -5,12 +5,6 @@ vars: G_LINT_VENV_CHECKSUM_FILE: "{{.BUILD_DIR}}/lint#venv.md5" # Linter target dirs G_CPP_LINT_DIRS: ["{{.CLP_FFI_PY_CPP_SRC_DIR}}"] - G_CPP_STATIC_CHECK_SRC_FILES: - # TODO: Before all clang-tidy violations are resolved, we should only run clang-tidy on the - # files whose violations we've fixed, both to ensure they remain free of violations and so that - # the workflow doesn't fail due to violations in other files. - - "{{.CLP_FFI_PY_CPP_SRC_DIR}}/Py_utils.cpp" - - "{{.CLP_FFI_PY_CPP_SRC_DIR}}/Py_utils.hpp" G_PYTHON_LINT_DIRS: ["{{.ROOT_DIR}}/clp_ffi_py", "{{.ROOT_DIR}}/tests"] tasks: @@ -109,7 +103,11 @@ tasks: --config-file "{{.CLP_FFI_PY_CPP_SRC_DIR}}/.clang-tidy" -p "{{.CLP_FFI_PY_COMPILE_COMMANDS_DB}}" SRC_PATHS: - ref: ".G_CPP_STATIC_CHECK_SRC_FILES" + # TODO: Before all clang-tidy violations are resolved, we should only run clang-tidy on + # the files whose violations we've fixed, both to ensure they remain free of violations + # and so that the workflow doesn't fail due to violations in other files. + - "{{.CLP_FFI_PY_CPP_SRC_DIR}}/Py_utils.cpp" + - "{{.CLP_FFI_PY_CPP_SRC_DIR}}/Py_utils.hpp" VENV_DIR: "{{.G_LINT_VENV_DIR}}" py-check: