Files
dotfiles/common/.config/templates/markdownlint.json
Pratik Tripathy 5c66d9d9c9 style(neovim): Markdown render & formatting updates
- Render markdown: nit: remove all `render_modes` incorrect configs
- Render markdown: add blink completions for checkboxes
- Render markdown: Disable indent - `indent-blankline` already takes
  care of it
- Render markdown: Use `obsidian` preset configuration
- Markdownlint: More rules
2025-08-04 11:13:41 +05:30

16 lines
589 B
JSON

{
"default": true,
"MD013": false, // do NOT check line length < 80
"MD028": false, // allow blanklines between quoted content
"MD038": false, // allow spaces inside code span elements
"MD051": false, // do NOT check #links should match actual headings in the document
"MD003": { "style": "consistent" },
"MD004": { "style": "consistent" },
"MD007": { "indent": 4 },
"MD029": { "style": "ordered" },
"MD035": { "style": "consistent" },
"MD046": { "style": "fenced" },
"MD049": { "style": "asterisk" },
"MD050": { "style": "asterisk" }
}