feat(md_lint_config): migrated from website repo #9

Merged
jon_nfc merged 3 commits from md-lint-default into development 2023-05-22 03:10:03 +00:00
4 changed files with 23 additions and 2 deletions

View File

@ -14,7 +14,7 @@ variables:
include:
- project: nofusscomputing/projects/gitlab-ci
ref: 36ce0b0b76e6769c7a2e0d4ea0f3fcd2cc2d6bb1
ref: development
file:
- conventional_commits/.gitlab-ci.yml
- validation/.gitlab-ci.yml

1
.gitmodules vendored
View File

@ -1,3 +1,4 @@
[submodule "gitlab-ci"]
path = gitlab-ci
url = https://gitlab.com/nofusscomputing/projects/gitlab-ci.git
branch=development

20
.markdownlint.json Normal file
View File

@ -0,0 +1,20 @@
{
"line-length": false,
"MD007": {
"indent": 4
},
"MD033": {
"allowed_elements": [ "div", "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.",
"html_s": "don't allow html <s> as this can be done in markdown"
}
}