We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e226b89 commit d265c08Copy full SHA for d265c08
.pre-commit-config.yaml
@@ -0,0 +1,29 @@
1
+---
2
+repos:
3
+ - repo: https://github.com/executablebooks/mdformat
4
+ # Do this before other tools "fixing" the line endings
5
+ rev: 0.7.17
6
+ hooks:
7
+ - id: mdformat
8
+ name: Format Markdown
9
+ entry: mdformat # Executable to run, with fixed options
10
+ language: python
11
+ types: [markdown]
12
+ args: [--wrap, "75", --number]
13
+ additional_dependencies:
14
+ - mdformat-toc
15
+ - mdformat-beautysh
16
+ # -mdformat-shfmt
17
+ # -mdformat-tables
18
+ - mdformat-config
19
+ - mdformat-black
20
+ - mdformat-web
21
+ - mdformat-gfm
22
+ - repo: https://github.com/adrienverge/yamllint.git
23
+ rev: v1.33.0
24
25
+ - id: yamllint
26
+ args:
27
+ - --no-warnings
28
+ - -d
29
+ - "{extends: relaxed, rules: {line-length: {max: 90}}}"
0 commit comments