Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,4 @@ clients/validator_node_grpc_client/package-lock.json
# moon
.moon/cache
.moon/docker
./cucumber-output-junit.xml

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Fix: pattern won’t match; use a root-anchored ignore

.gitignore doesn’t treat "./" specially. Use a leading slash to anchor to repo root so the file is actually ignored.

-./cucumber-output-junit.xml
+/cucumber-output-junit.xml
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
./cucumber-output-junit.xml
/cucumber-output-junit.xml
🤖 Prompt for AI Agents
In .gitignore around line 65, the pattern "./cucumber-output-junit.xml" won't
match because .gitignore doesn't treat "./" specially; replace it with a
root-anchored pattern "/cucumber-output-junit.xml" so the file at the repo root
is actually ignored (remove the "./" and add the leading slash).

Loading
Loading