mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-01-04 15:08:49 +01:00
wip
This commit is contained in:
parent
7668b0a263
commit
f44a15e430
17 changed files with 333 additions and 27 deletions
|
|
@ -340,6 +340,7 @@
|
|||
// MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md060.md
|
||||
"MD060": {
|
||||
// Table column style
|
||||
"style": "any"
|
||||
"style": "any",
|
||||
// RegExp for matching wide character(s)
|
||||
}
|
||||
}
|
||||
|
|
@ -304,3 +304,4 @@ MD059:
|
|||
MD060:
|
||||
# Table column style
|
||||
style: "any"
|
||||
# RegExp for matching wide character(s)
|
||||
|
|
|
|||
|
|
@ -645,6 +645,12 @@ for (const rule of rules) {
|
|||
],
|
||||
"default": "any"
|
||||
};
|
||||
// @ts-ignore
|
||||
subscheme.properties.wide_character = {
|
||||
"description": "RegExp for matching wide character(s)",
|
||||
"type": "string",
|
||||
"default": undefined
|
||||
};
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -4701,6 +4701,10 @@
|
|||
"tight"
|
||||
],
|
||||
"default": "any"
|
||||
},
|
||||
"wide_character": {
|
||||
"description": "RegExp for matching wide character(s)",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -4747,6 +4751,10 @@
|
|||
"tight"
|
||||
],
|
||||
"default": "any"
|
||||
},
|
||||
"wide_character": {
|
||||
"description": "RegExp for matching wide character(s)",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4701,6 +4701,10 @@
|
|||
"tight"
|
||||
],
|
||||
"default": "any"
|
||||
},
|
||||
"wide_character": {
|
||||
"description": "RegExp for matching wide character(s)",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -4747,6 +4751,10 @@
|
|||
"tight"
|
||||
],
|
||||
"default": "any"
|
||||
},
|
||||
"wide_character": {
|
||||
"description": "RegExp for matching wide character(s)",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue