30 lines
826 B
YAML
30 lines
826 B
YAML
---
|
|
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
|
|
- repo: https://github.com/markdownlint/markdownlint
|
|
rev: v0.12.0
|
|
hooks:
|
|
- id: markdownlint_docker
|
|
name: Markdownlint Docker
|
|
description: ->
|
|
Run markdown lint on your Markdown files
|
|
using the project docker image
|
|
language: docker_image
|
|
files: \.(md|mdown|markdown)$
|
|
entry: markdownlint/markdownlint
|
|
|
|
- repo: https://github.com/adrienverge/yamllint.git
|
|
rev: v1.29.0
|
|
hooks:
|
|
- id: yamllint
|
|
args: [--strict]
|