Allow unknown (custom) rule names in .markdownlint.json schema.

This commit is contained in:
David Anson 2020-09-15 21:48:00 -07:00
parent 3f637ba8e5
commit 6061cce169
3 changed files with 44 additions and 4 deletions

View file

@ -28,7 +28,12 @@ const schema = {
"/main/schema/markdownlint-config-schema.json"
}
},
"additionalProperties": false
"additionalProperties": {
"type:": [
"boolean",
"object"
]
}
};
const tags = {};

View file

@ -1547,5 +1547,10 @@
"default": true
}
},
"additionalProperties": false
"additionalProperties": {
"type:": [
"boolean",
"object"
]
}
}