bidmaster-cli/.gitignore
sladro f48971cf67 feat: 实现完整三级标题生成功能
- 扩展DocumentChapter模型支持嵌套结构和评分值
- 新增智能分组算法,按关键词和前缀对评分项进行分类
- 重写章节生成逻辑,支持一级、二级、三级标题完整结构
- 优化显示系统,支持递归显示和颜色区分
- 增强表格解析能力,处理复杂的合并单元格结构
- 改进AI识别逻辑,更好地识别评分表格类型
- 完善.gitignore文件,添加项目相关忽略规则

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-25 14:33:30 +08:00

64 lines
531 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
.venv
.env
venv/
ENV/
env.bak/
venv.bak/
# Testing
.pytest_cache/
.coverage
.hypothesis/
htmlcov/
# IDE
.vscode/
.idea/
*.swp
*.swo
# Claude Code
.claude/
# Project specific
data/kb/
*.docx
*.xlsx
*.csv
*.pdf
logs/
temp/
# OS
.DS_Store
Thumbs.db
# Ruff cache
.ruff_cache/