Add rule MD060/table-column-style (fixes #90, fixes #323).

This commit is contained in:
David Anson 2025-08-19 21:42:08 -07:00
parent b29a0e004c
commit 3532e3110a
36 changed files with 11751 additions and 175 deletions

View file

@ -604,6 +604,21 @@ for (const rule of rules) {
}
};
break;
case "MD060":
scheme.properties = {
"style": {
"description": "Table column style",
"type": "string",
"enum": [
"any",
"aligned",
"compact",
"tight"
],
"default": "any"
}
};
break;
default:
custom = false;
break;