我正在使用 pipenv 为我的团队设置一个 python 项目,我已经在 Pipfile 中安装了预提交库,当新开发人员克隆我的 repo 并运行时pipenv install
,预提交不起作用。有必要运行pre-commit install
并pre-commit run --all-files
使其工作。
这是我想在预提交中运行的 .pre-commit-config.yaml 文件。
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v1.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-json
- id: requirements-txt-fixer
- id: flake8
exclude: migrations
- repo: local
hooks:
- id: system
name: PyLint
entry: python -m pylint.__main__
language: system
files: \.py$
exclude: migrations
有一种方法可以在干净的 pipenv 安装后运行预提交并避免运行预提交安装和预提交运行?