- 任务化清洗流程:Task/TaskManager + BatchProcessor 三方法
- 数据目录规范化:data/{db,sources,backup}
- CLI 入口移进包,注册 jclean 命令
- 工作流测试驱动(tests/test_cleaner_workflow.py)
- 40 测试通过
16 lines
360 B
Plaintext
16 lines
360 B
Plaintext
# 统一换行为 LF,防止 Windows 下 checkout 变成 CRLF
|
||
# 本项目所有文本文件约定 UTF-8 无 BOM + LF
|
||
* text=auto eol=lf
|
||
|
||
# 明确的文本类型
|
||
*.py text eol=lf
|
||
*.txt text eol=lf
|
||
*.md text eol=lf
|
||
*.json text eol=lf
|
||
*.toml text eol=lf
|
||
*.yaml text eol=lf
|
||
*.yml text eol=lf
|
||
|
||
# 二进制文件(不做换行转换)
|
||
*.db binary
|