mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-03-05 01:50:15 +01:00
wip
This commit is contained in:
parent
996c0f6b27
commit
b3564ea841
12 changed files with 1606 additions and 64 deletions
58
test/configure-file-with-severity-alias.md
Normal file
58
test/configure-file-with-severity-alias.md
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
# 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": {
|
||||
"severity": "off"
|
||||
}
|
||||
} -->
|
||||
Loading…
Add table
Add a link
Reference in a new issue