ci(markdown_lint): added linting rule file

MR !1
This commit is contained in:
2022-02-14 10:03:41 +09:30
parent 1d73c6eb8c
commit 38a252727d

19
.markdownlint.json Normal file
View File

@ -0,0 +1,19 @@
{
"line-length": false,
"MD007": {
"indent": 4
},
"MD033": {
"allowed_elements": [ "div", "s", "span", "u", "p" ]
},
"blanks-around-headings":{
"lines_above": 2,
"lines_below": 1
},
"MD012": {
"maximum": 2
},
"comment": {
"MD012": "MD012 max=2 added so that headings can have two lines above for clarity."
}
}