mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-04-28 03:45:29 +00:00
56e03e9ccb
* .pre-commit-config.yaml: properly handle markdown and exclude svg from trailing-whitespace
* {CONTRIBUTING,docs/appservice}.md: remove trailing whitespace
21 lines
635 B
YAML
21 lines
635 B
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
# See https://pre-commit.ci for more information
|
|
ci:
|
|
autoupdate_schedule: weekly
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
args: ["--markdown-linebreak-ext", "md"]
|
|
exclude_types: [svg]
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
|
rev: "2.7.3"
|
|
hooks:
|
|
- id: editorconfig-checker
|
|
alias: ec
|