Add initial .editorconfig and extra markdownlint rules (#25293)

pull/25295/head
Kirk Larkin 2022-03-14 14:20:31 +00:00 committed by GitHub
parent 03a1cfafb0
commit 215178cee9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 1 deletions

17
.editorconfig 100644
View File

@ -0,0 +1,17 @@
root = true
[*]
charset = utf-8
end_of_line = crlf
indent_size = 2
indent_style = space
insert_final_newline = true
[*.{cs,cshtml,html,razor}]
indent_size = 4
[*.cs]
dotnet_sort_system_directives_first = true
[*.md]
max_line_length = off

View File

@ -4,6 +4,9 @@
"blanks-around-lists": false,
"blanks-around-fences": false,
"blanks-around-headers": true,
"emphasis-style": {
"style": "asterisk"
},
"fenced-code-language": true,
"first-header-h1": false,
"first-line-h1": false,
@ -61,5 +64,11 @@
},
"required-headers": false,
"single-h1": false,
"ul-start-left": false
"strong-style": {
"style": "asterisk"
},
"ul-start-left": false,
"ul-style": {
"style": "asterisk"
}
}