Update dependencies

This commit is contained in:
Ben Edgington
2024-04-12 14:57:53 +01:00
parent 5118a2f720
commit a93bc7a406
4 changed files with 530 additions and 592 deletions

View File

@@ -52,6 +52,9 @@ module.exports.lintSourceMarkdown = (file) => {
// Multiple top-level titles are ok (they appear on different pages after pre-processing)
'MD025': false,
// Doesn't work well with blockquoted lists
'MD027': false,
// Some lists begin with other index than 1
'MD029': false,

View File

@@ -50,6 +50,9 @@ module.exports.lintSplitMarkdown = (files) => {
// We have long lines
'MD013': false,
// Doesn't work well with blockquoted lists
'MD027': false,
// Some lists begin with other index than 1
'MD029': false,