We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52494a5 commit b9dfdffCopy full SHA for b9dfdff
2 files changed
.pre-commit-config.yaml
@@ -111,6 +111,16 @@ repos:
111
name: "🐚 shellcheck - Lint shell scripts"
112
files: \.sh$
113
114
+ # --- Markdown ---
115
+ - repo: https://github.com/igorshubovych/markdownlint-cli
116
+ rev: v0.48.0
117
+ hooks:
118
+ - id: markdownlint
119
+ name: "📝 markdownlint - Lint markdown files"
120
+ args: ["--fix"]
121
+ exclude: |
122
+ (?x)^(docs/release-notes.md|CHANGELOG.md)$
123
+
124
# --- Python ---
125
- repo: https://github.com/psf/black
126
rev: 26.1.0
.vscode/settings.json
@@ -15,6 +15,7 @@
15
"editor.insertSpaces": false,
16
"editor.tabSize": 4,
17
"[markdown]": {
18
+ "editor.formatOnSave": true,
19
"editor.insertSpaces": true,
20
"files.trimTrailingWhitespace": false
21
},
0 commit comments