Files
django-template/.pre-commit-config.yaml
2020-09-22 21:37:36 +02:00

26 lines
664 B
YAML

fail_fast: true
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.1.0
hooks:
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 19.3b0
hooks:
- id: black
- repo: https://github.com/asottile/blacken-docs
rev: v1.7.0
hooks:
- id: blacken-docs
additional_dependencies: [black==19.3b0]
- repo: local
hooks:
- id: markdownlint
name: markdownlint
description: "Lint Markdown files"
entry:
markdownlint '**/*.md' --fix --ignore node_modules --config
"./.markdownlint.json"
language: node
types: [markdown]