Merge pull request #8 from squassina/copilot/fix-markdown-lint-errors

Configure markdownlint exceptions for inline HTML and line length
This commit is contained in:
Ricardo Squassina Lee 2026-02-18 09:32:47 -03:00 committed by GitHub
commit 118a0bb281
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

11
.markdownlintrc Normal file
View file

@ -0,0 +1,11 @@
{
"default": true,
"MD013": {
"line_length": 150,
"code_blocks": false,
"tables": false
},
"MD033": {
"allowed_elements": ["div", "img"]
}
}