We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e005cd commit 615f565Copy full SHA for 615f565
suspicious_patterns.sh
@@ -8,6 +8,11 @@ files_changed=$(git diff --name-only --relative HEAD~1 HEAD)
8
9
# Loop through each file and search for the patterns
10
for file in $files_changed; do
11
+ # Skip if the file is Import_test.cpp (exact filename match regardless of path)
12
+ if [[ "$(basename "$file")" == "Import_test.cpp" ]]; then
13
+ continue
14
+ fi
15
+
16
# Construct the absolute path
17
absolute_path="$repo_root/$file"
18
0 commit comments