我正在使用pipenv为我的团队设置一个python项目,我已经在Pipfile中安装了预提交库,当新开发人员克隆我的仓库并运行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 isntall之后运行预提交,并避免运行预提交安装和预提交运行?