mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
Allow unknown (custom) rule names in .markdownlint.json schema.
This commit is contained in:
parent
3f637ba8e5
commit
6061cce169
3 changed files with 44 additions and 4 deletions
|
|
@ -28,7 +28,12 @@ const schema = {
|
|||
"/main/schema/markdownlint-config-schema.json"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
"additionalProperties": {
|
||||
"type:": [
|
||||
"boolean",
|
||||
"object"
|
||||
]
|
||||
}
|
||||
};
|
||||
const tags = {};
|
||||
|
||||
|
|
|
|||
|
|
@ -1547,5 +1547,10 @@
|
|||
"default": true
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
"additionalProperties": {
|
||||
"type:": [
|
||||
"boolean",
|
||||
"object"
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue