# Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv) # DataOps Platform - Cursor 上下文忽略配置 # ==================== 缓存目录 ==================== .mypy_cache/ __pycache__/ .pytest_cache/ .ruff_cache/ *.pyc *.pyo # ==================== 依赖目录 ==================== node_modules/ vendor/ .venv/ venv/ env/ # ==================== 构建输出 ==================== dist/ build/ *.min.js *.egg-info/ # ==================== 大型数据文件 ==================== *.csv *.json.gz *.xlsx *.xls datasets/ # ==================== 日志文件 ==================== logs/ *.log flask_*.log # ==================== IDE 和编辑器 ==================== .idea/ .vscode/ *.swp *.swo # ==================== Git ==================== .git/ # ==================== 自动生成的代码 ==================== src/generated/ *.g.ts # ==================== 其他 ==================== .env .env.local *.bak *.tmp