🎨 add pre-commit installation to create_env scripts

This commit is contained in:
Ondrej Samohel 2023-01-06 17:19:02 +01:00
parent 9399314761
commit bf65fd495d
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
3 changed files with 27 additions and 1 deletions

16
.pre-commit-config.yaml Normal file
View file

@ -0,0 +1,16 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: no-commit-to-branch
args: [ '--pattern', '^(?!((enhancement|feature|bugfix|documentation|tests)\/[a-zA-Z0-9\-]+)$).*' ]
- repo: https://github.com/psf/black
rev: 22.12.0
hooks:
- id: black