- 实现三层架构(CLI/Agent/Tools) - 完成招标文件解析器(支持Excel/CSV/Word) - 实现AI智能表格识别和分类 - 支持商务/技术评分项智能分离 - 实现RAG知识库管理 - 完成专业目录结构生成 - 修复编码规范违规问题 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
569 B
YAML
25 lines
569 B
YAML
# Pre-commit钩子配置
|
|
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 25.9.0
|
|
hooks:
|
|
- id: black
|
|
language_version: python3.11
|
|
|
|
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
|
rev: v0.13.1
|
|
hooks:
|
|
- id: ruff
|
|
args: [--fix, --exit-non-zero-on-fix]
|
|
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 6.0.1
|
|
hooks:
|
|
- id: isort
|
|
args: ["--profile", "black"]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.5.0
|
|
hooks:
|
|
- id: mypy
|
|
additional_dependencies: [types-all] |