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
80 changes: 80 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,80 @@
# Build and distribution directories
build/
dist/
*.egg-info/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python

# Documentation build outputs
_build/
docs/_build/
docs/build/

# Virtual environments
venv/
env/
.venv/
.env/

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Testing and coverage
.coverage
.pytest_cache/
.tox/
htmlcov/
.nox/

# Jupyter Notebook checkpoints
.ipynb_checkpoints/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# Large binary files
*.so
*.dylib
*.dll

# Logs
*.log

# Temporary files
*.tmp
*.temp
.tmp/
.temp/

# Git files (if needed)
.git/

# Package manager files that might be large
node_modules/
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