Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@
!**/anchor-minter/target/deploy/

#
**/tests-kit
**/tests-kit

# Logs
**/**/**.log
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Simplify the .log ignore pattern.

The pattern **/**/**.log is redundant and uses incorrect syntax. The ** token is for matching directory paths, not filenames. To ignore all .log files in any subdirectory, use **/*.log instead.

-**/**/**.log
+**/*.log
📝 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
**/**/**.log
**/*.log
🤖 Prompt for AI Agents
In .gitignore around line 25, the pattern '**/**/**.log' is redundant and
incorrect for matching log files; replace it with a single recursive pattern
'**/*.log' to ignore all .log files in any directory (including root), remove
the invalid extra slashes and stars, and save the updated .gitignore.

Loading
Loading