加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.pre-commit-config.yaml 669 Bytes
一键复制 编辑 原始数据 按行查看 历史
sunlin92 提交于 2022-05-06 14:42 . chore: pre-commit config
repos:
- repo: local
hooks:
- id: isort
name: isort
stages: [commit]
language: system
entry: poetry run isort
types: [python]
- id: black
name: black
stages: [commit]
language: system
entry: poetry run black
types: [python]
- id: flake8
name: flake8
stages: [commit]
language: system
entry: poetry run flake8
types: [python]
exclude: setup.py
- id: mypy
name: mypy
stages: [commit]
language: system
entry: poetry run mypy
types: [python]
pass_filenames: false
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化