98cf3b54a1
1. 移除pyproject.toml中冗余的ruff格式化配置 2. 删除CliRunner内置的类型校验逻辑并移除对应测试用例 3. 修复条件判断模块的匿名函数命名兼容非函数对象场景 4. 优化task.py中的类型转换和命令执行逻辑 5. 更新pymake.py的格式化任务配置并调整测试任务依赖 6. 从依赖和锁文件中移除ruff包,统一pre-commit配置格式
23 lines
705 B
YAML
23 lines
705 B
YAML
# prek compatible configuration
|
|
# See https://pre-commit.com for more information
|
|
repos:
|
|
- repo: https://gitcode.com/gh_mirrors/ru/ruff-pre-commit.git
|
|
# Ruff version - keep in sync with pyproject.toml
|
|
rev: v0.15.4
|
|
hooks:
|
|
# Run the linter
|
|
- id: ruff
|
|
args: [--fix, --exit-non-zero-on-fix]
|
|
# Run the formatter
|
|
- id: ruff-format
|
|
args: [--config=pyproject.toml]
|
|
- repo: https://gitcode.com/gh_mirrors/pr/pre-commit-hooks.git
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: check-merge-conflict
|
|
- id: debug-statements
|
|
- id: fix-byte-order-marker
|
|
- id: trailing-whitespace
|
|
args: [--markdown-linebreak-ext=md]
|
|
- id: end-of-file-fixer
|