Add pre-commit hook with black config

This commit is contained in:
Cosmin Ciocan
2024-01-12 16:41:41 +01:00
parent 6352f21c04
commit c38fb54216
+25
View File
@@ -0,0 +1,25 @@
default_language_version:
python: python3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
# list of supported hooks: https://pre-commit.com/hooks.html
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-docstring-first
- id: check-yaml
- id: debug-statements
- id: detect-private-key
- id: check-executables-have-shebangs
- id: check-toml
- id: check-case-conflict
- id: check-added-large-files
# python code formatting
- repo: https://github.com/psf/black
rev: 23.1.0
hooks:
- id: black
args: [--line-length, "79", --experimental-string-processing]