mirror of
https://github.com/Crocmagnon/advent-of-code.git
synced 2024-11-05 14:23:58 +01:00
26 lines
622 B
YAML
26 lines
622 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v3.3.0
|
|
hooks:
|
|
- id: check-ast
|
|
types: [python]
|
|
- id: check-toml
|
|
types: [toml]
|
|
- id: check-yaml
|
|
types: [yaml]
|
|
- id: end-of-file-fixer
|
|
types: [python]
|
|
- id: check-merge-conflict
|
|
- id: trailing-whitespace
|
|
args:
|
|
- --markdown-linebreak-ext=md
|
|
- repo: https://github.com/timothycrosley/isort
|
|
rev: 5.6.4
|
|
hooks:
|
|
- id: isort
|
|
types: [python]
|
|
- repo: https://github.com/psf/black
|
|
rev: 20.8b1
|
|
hooks:
|
|
- id: black
|
|
types: [python]
|