markdownlint/test/configure-file-with-severity-name.md

59 lines
694 B
Markdown
Raw Normal View History

2025-09-20 22:19:47 -07:00
# Configure File With Severity Name
Text * text* {MD037}
Text ` text` {MD038}
2025-09-20 22:19:47 -07:00
Text [ text](.)
+ List item {MD004}
Text (text)[.] {MD011}
2025-09-20 22:19:47 -07:00
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}
2025-09-20 22:19:47 -07:00
Text [ text](.)
+ List item {MD004}
Text (text)[.] {MD011}
2025-09-20 22:19:47 -07:00
2. List item
<!-- markdownlint-configure-file {
"default": false,
"MD037": "error",
2025-09-20 22:19:47 -07:00
"MD038": "warning",
"MD039": false,
"MD004": {
"severity": "error",
"style": "dash"
},
"MD011": {
2025-09-20 22:19:47 -07:00
"severity": "warning"
},
"MD029": {
2025-09-20 22:19:47 -07:00
"severity": "off"
}
} -->