This commit is contained in:
David Anson 2025-11-27 19:45:22 -08:00
parent d8bf33dde6
commit 4541ee3dd2
17 changed files with 395 additions and 67 deletions

View file

@ -86,7 +86,9 @@
// Strict length checking
"strict": false,
// Stern length checking
"stern": false
"stern": false,
// Expand wide characters
"wide_characters": false
},
// MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md014.md

View file

@ -79,6 +79,8 @@ MD013:
strict: false
# Stern length checking
stern: false
# Expand wide characters
wide_characters: false
# MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md014.md
MD014: true

View file

@ -264,6 +264,12 @@ for (const rule of rules) {
"type": "boolean",
"default": false
};
// @ts-ignore
subscheme.properties.wide_characters = {
"description": "Expand wide characters",
"type": "boolean",
"default": false
};
break;
case "MD022":
// @ts-ignore

View file

@ -920,6 +920,11 @@
"description": "Stern length checking",
"type": "boolean",
"default": false
},
"wide_characters": {
"description": "Expand wide characters",
"type": "boolean",
"default": false
}
}
}
@ -998,6 +1003,11 @@
"description": "Stern length checking",
"type": "boolean",
"default": false
},
"wide_characters": {
"description": "Expand wide characters",
"type": "boolean",
"default": false
}
}
}

View file

@ -920,6 +920,11 @@
"description": "Stern length checking",
"type": "boolean",
"default": false
},
"wide_characters": {
"description": "Expand wide characters",
"type": "boolean",
"default": false
}
}
}
@ -998,6 +1003,11 @@
"description": "Stern length checking",
"type": "boolean",
"default": false
},
"wide_characters": {
"description": "Expand wide characters",
"type": "boolean",
"default": false
}
}
}