We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2914e47 commit 7538097Copy full SHA for 7538097
2 files changed
.github/workflows/static-analysis-pr.yml
@@ -78,3 +78,15 @@ jobs:
78
run: |
79
echo "clang-tidy run has failed. See previous 'Run clang-tidy' stage logs"
80
exit 1
81
+ nolint-check:
82
+ runs-on: ubuntu-24.04
83
+ steps:
84
+ - uses: actions/checkout@v4
85
+ - name: Search for NOLINT
86
+ run: |
87
+ if grep -rnw "tasks" -e "NOLINT"; then
88
+ echo "Found 'NOLINT' in source files. Please address or justify its use.";
89
+ exit 1;
90
+ else
91
+ echo "No 'NOLINT' markers found.";
92
+ fi
tasks/mpi/example/include/ops_mpi.hpp
@@ -15,7 +15,7 @@ class TestTaskMPI : public ppc::core::Task {
15
bool RunImpl() override;
16
bool PostProcessingImpl() override;
17
18
- private:
+ private: // NOLINTNEXTLINE
19
std::vector<int> input_, output_;
20
int rc_size_{};
21
0 commit comments