Add support and tests for tags, migrate style files.

This commit is contained in:
David Anson 2015-03-16 23:25:06 -07:00
parent 0bd6dea637
commit 139e474a12
5 changed files with 215 additions and 7 deletions

View file

@ -1,3 +1,5 @@
{
"comment": "All rules",
"default": true
}

18
style/cirosantilli.json Normal file
View 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
View file

@ -0,0 +1,9 @@
{
"comment": "Relaxed rules",
"default": true,
"whitespace": false,
"line_length": false,
"MD006": false,
"MD007": false
}