pz / .pre-commit-config.yaml
github-actions[bot]
GitHub deploy: 7e88d7f8cc04cc78f63daecf8868ba0e5c0b5f97
aa6b6bc
raw
history blame contribute delete
369 Bytes
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
files: '^.*\.py$'
repos:
- repo: local
hooks:
- id: black
name: black
entry: black --check --diff --color
language: python
- id: flake8
name: flake8
entry: flake8 --ignore E203,E261,E501,W503,E741
language: python