AdguardFilters/.markdownlint.json
David 7760589df9
Integrate markdownlint (#171933)
* Integrate markdownlint

* Update config
2024-02-01 20:27:55 +01:00

18 lines
477 B
JSON

{
"ul-indent": { "indent": 2 },
"line-length": {
"stern": true,
"line_length": 120
},
"no-multiple-blanks": { "maximum": 2 },
"no-inline-html": {
"allowed_elements": ["a", "details", "summary", "img", "pre"]
},
"no-duplicate-header": { "siblings_only": true },
"no-blanks-blockquote": false,
"no-bare-urls": false,
"ul-style": { "style": "dash" },
"blanks-around-fences": { "list_items": false },
"emphasis-style": { "style": "asterisk" }
}