tcl-filtrage/.pre-commit-config.yaml

29 lines
670 B
YAML
Raw Permalink Normal View History

2021-11-09 12:33:18 +01:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2022-03-25 19:18:15 +01:00
rev: v4.1.0
2021-11-09 12:33:18 +01:00
hooks:
- id: check-ast
- id: check-json
- id: check-toml
- id: check-xml
- id: check-yaml
- id: end-of-file-fixer
- id: check-merge-conflict
- id: pretty-format-json
args:
- --autofix
- --no-sort-keys
- id: trailing-whitespace
args:
- --markdown-linebreak-ext=md
- repo: https://github.com/timothycrosley/isort
2022-03-25 19:18:15 +01:00
rev: 5.10.1
2021-11-09 12:33:18 +01:00
hooks:
- id: isort
types: [python]
- repo: https://github.com/psf/black
2022-03-25 19:18:15 +01:00
rev: 22.1.0
2021-11-09 12:33:18 +01:00
hooks:
- id: black
types: [python]