stress_at_work_analysis/.pre-commit-config.yaml

31 lines
787 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/mwouts/jupytext
rev: v1.14.7
hooks:
- id: jupytext
args: [--sync, --pipe, isort, black, flake8]
additional_dependencies:
- isort==5.12.0 # Matches hook
- black==22.3.0
- flake8==6.0.0
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort (python)
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8