Advent_of_code/.pre-commit-config.yaml

22 lines
509 B
YAML
Raw Normal View History

2021-11-12 20:02:55 +01:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2023-04-29 15:36:47 +02:00
rev: v4.4.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
2023-04-29 15:36:47 +02:00
rev: 23.3.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
2023-04-29 15:36:47 +02:00
rev: 5.12.0
2022-03-01 10:51:52 +01:00
hooks:
- id: isort
2023-04-29 15:36:47 +02:00
- repo: https://github.com/charliermarsh/ruff-pre-commit
# Ruff version.
rev: "v0.0.263"
2021-11-12 20:02:55 +01:00
hooks:
2023-04-29 15:36:47 +02:00
- id: ruff