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
50 changes: 50 additions & 0 deletions .cursorignore
Copy link
Contributor

Choose a reason for hiding this comment

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

https://cursor.com/docs/context/ignore-files#files-ignored-by-default

Cursor automatically ignores files in .gitignore

No need to add this file unless some specific files need to be left untouched just by cursor

Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Additional Python bytecode files not in .gitignore
*.pyc
*.pyo
*.pyd

# Documentation build outputs (additional to .gitignore)
docs/build/

# IDE and editor files (additional to .gitignore)
*.swp
*.swo
*~

# OS generated files (not in .gitignore)
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Testing and coverage (additional to .gitignore)
.nox/

# mypy (additional files)
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# Large binary files (additional to .gitignore)
*.dylib
*.dll

# Temporary files (not in .gitignore)
*.tmp
*.temp
.tmp/
.temp/

# Git files (if needed)
.git/
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
__pycache__/
*.py[cod]
*$py.class
.history/

# C extensions
*.so

# Distribution / packaging
.Python
build/
_build/
develop-eggs/
dist/
downloads/
Expand Down
Loading
Loading