Skip to content

Commit

Permalink
chore: Add Markdownlint config from aspnetcore (dotnet#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni authored and scottaddie committed Mar 26, 2019
1 parent b35d851 commit f694f29
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"default": true,

"blanks-around-fences": true,
"blanks-around-headers": true,
"fenced-code-language": true,
"first-header-h1": {
"level": 1
},
"header-increment": true,
"header-start-left": true,
"header-style": {
"style": "atx"
},
"hr-style": {
"style": "---"
},
"line-length": false,
"list-indent": true,
"list-marker-space": true,
"no-alt-text": true,
"no-bare-urls": true,
"no-blanks-blockquote": true,
"no-duplicate-header": true,
"no-empty-links": true,
"no-hard-tabs": true,
"no-inline-html": {
"allowed_elements": [
"a",
"br",
"p"
]
},
"no-missing-space-atx": true,
"no-multiple-blanks": true,
"no-multiple-space-atx": true,
"no-multiple-space-blockquote": true,
"no-reversed-links": true,
"no-space-in-code": true,
"no-space-in-emphasis": true,
"no-space-in-links": true,
"no-trailing-punctuation": true,
"no-trailing-spaces": false,
"ol-prefix": {
"style": "one_or_ordered"
},
"proper-names": {
"code_blocks": false,
"names": [
".NET",
"ASP.NET",
"JavaScript",
"NuGet",
"PowerShell"
]
},
"single-h1": true,
"ul-start-left": true
}

0 comments on commit f694f29

Please sign in to comment.