fileformats/.markdownlint-cli2.jsonc

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-12-07 00:12:28 +01:00
{
"config": {
"default": true,
2023-12-07 00:44:30 +01:00
"no-inline-html": false,
2024-01-27 19:49:31 +01:00
"no-duplicate-heading": false,
2023-12-07 00:44:30 +01:00
/* Disables rules that may conflict with Prettier */
/* Reference: https://github.com/DavidAnson/markdownlint/blob/main/style/prettier.json */
"blanks-around-fences": false,
"blanks-around-headings": false,
"blanks-around-lists": false,
"code-fence-style": false,
"emphasis-style": false,
"heading-start-left": false,
"hr-style": false,
"line-length": false,
"list-indent": false,
"list-marker-space": false,
"no-blanks-blockquote": false,
"no-hard-tabs": false,
"no-missing-space-atx": false,
"no-missing-space-closed-atx": false,
"no-multiple-blanks": false,
"no-multiple-space-atx": false,
"no-multiple-space-blockquote": false,
"no-multiple-space-closed-atx": false,
"no-trailing-spaces": false,
"ol-prefix": false,
"strong-style": false,
2024-01-27 19:49:31 +01:00
"ul-indent": false,
2023-12-07 00:12:28 +01:00
},
2024-01-27 19:49:31 +01:00
"globs": ["**/*.md"],
2023-12-07 00:12:28 +01:00
}