Advent_of_code/.pre-commit-config.yaml

26 lines
637 B
YAML
Raw Normal View History

2021-11-12 20:02:55 +01:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
2021-11-12 20:02:55 +01:00
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 22.6.0
2021-11-12 20:02:55 +01:00
hooks:
- id: black
2022-03-01 10:51:52 +01:00
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
hooks:
- id: isort
2021-11-12 20:02:55 +01:00
- repo: https://github.com/pre-commit/mirrors-mypy
2022-07-20 17:51:53 +02:00
rev: v0.971
2021-11-12 20:02:55 +01:00
hooks:
- id: mypy
additional_dependencies: [pydantic] # add if use pydantic
2022-03-01 10:51:52 +01:00
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
2021-11-12 20:02:55 +01:00
hooks:
2022-03-01 10:51:52 +01:00
- id: flake8