Skip to content
Open
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
25 changes: 11 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,18 @@
```
# Compiled and build artifacts
Comment on lines +1 to 2

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

The .gitignore file contains markdown code block backticks (```` `` `) at the very beginning. This is likely an LLM generation artifact and will cause Git to treat it as an invalid pattern or fail to parse correctly. Please remove the backticks.

# Compiled and build artifacts

*.pyc
__pycache__/
*.o
*.obj
*.class
*.exe
*.dll
*.so
*.a
*.out
dist/
build/
target/
*.out

# Dependencies
.venv/
venv/
node_modules/
.mypy_cache/
.pytest_cache/
.coverage
coverage/
htmlcov/
target/
.gradle/

# Logs and temp files
Expand All @@ -33,7 +24,7 @@ htmlcov/
# Environment
.env
.env.local
.env.*
*.env.*

# Editors
.vscode/
Expand All @@ -45,6 +36,11 @@ htmlcov/
.DS_Store
Thumbs.db

# Coverage
coverage/
htmlcov/
.coverage

# Compressed files
*.zip
*.gz
Expand All @@ -67,4 +63,5 @@ Thumbs.db
*.tar.gz
*.tar.bz2
*.tar.xz
*.tar.zst
*.tar.zst
```
Comment on lines +66 to +67

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

The .gitignore file contains trailing markdown code block backticks (```` `` `) at the end. Please remove them to prevent Git from parsing them as a pattern.

*.tar.zst

Loading