mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
Add support and tests for tags, migrate style files.
This commit is contained in:
parent
0bd6dea637
commit
139e474a12
5 changed files with 215 additions and 7 deletions
|
|
@ -1,3 +1,5 @@
|
|||
{
|
||||
"comment": "All rules",
|
||||
|
||||
"default": true
|
||||
}
|
||||
|
|
|
|||
18
style/cirosantilli.json
Normal file
18
style/cirosantilli.json
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"comment": "Rules for the style guide at http://www.cirosantilli.com/markdown-style-guide/",
|
||||
|
||||
"default": true,
|
||||
"MD003": {
|
||||
"style": "atx"
|
||||
},
|
||||
"MD004": {
|
||||
"style": "dash"
|
||||
},
|
||||
"MD007": {
|
||||
"indent": 4
|
||||
},
|
||||
"MD030": {
|
||||
"ul_multi": 3,
|
||||
"ol_multi": 2
|
||||
}
|
||||
}
|
||||
9
style/relaxed.json
Normal file
9
style/relaxed.json
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"comment": "Relaxed rules",
|
||||
|
||||
"default": true,
|
||||
"whitespace": false,
|
||||
"line_length": false,
|
||||
"MD006": false,
|
||||
"MD007": false
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue