mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
58 lines
751 B
Markdown
58 lines
751 B
Markdown
# Configure File With Severity Alias
|
|
|
|
Text * text* {MD037}
|
|
|
|
Text ` text` {MD038}
|
|
|
|
Text [ text](.)
|
|
|
|
+ List item {MD004}
|
|
|
|
Text (text)[.] {MD011}
|
|
|
|
2. List item
|
|
|
|
<!-- markdownlint-disable -->
|
|
|
|
Text * text*
|
|
|
|
Text ` text`
|
|
|
|
Text [ text](.)
|
|
|
|
+ List item
|
|
|
|
Text (text)[.]
|
|
|
|
2. List item
|
|
|
|
<!-- markdownlint-restore -->
|
|
|
|
Text * text* {MD037}
|
|
|
|
Text ` text` {MD038}
|
|
|
|
Text [ text](.)
|
|
|
|
+ List item {MD004}
|
|
|
|
Text (text)[.] {MD011}
|
|
|
|
2. List item
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"default": false,
|
|
"no-space-in-emphasis": "error",
|
|
"no-space-in-code": "warning",
|
|
"no-space-in-links": false,
|
|
"ul-style": {
|
|
"severity": "error",
|
|
"style": "dash"
|
|
},
|
|
"no-reversed-links": {
|
|
"severity": "warning"
|
|
},
|
|
"ol-prefix": {
|
|
"enabled": false
|
|
}
|
|
} -->
|