feat: add markdownlinter config

This commit is contained in:
Simon Cornet 2025-06-05 11:19:52 +02:00
commit cb6271e677
2 changed files with 14 additions and 1 deletions

13
.markdownlint-cli2.jsonc Normal file
View file

@ -0,0 +1,13 @@
{
// files to lint
"globs": [
"readme.md",
"docs/**/*.md"
],
// linting rules
"config": {
"MD013": {
"line_length": 120
}
}
}