Add $id to configuration schema, switch to version-specific repository links.

This commit is contained in:
David Anson 2023-11-24 15:23:36 -08:00
parent 24ee072442
commit 316b0989c3
6 changed files with 36 additions and 33 deletions

View file

@ -6,6 +6,10 @@
*/
export interface Configuration {
/**
* JSON Schema URI (expected by some editors)
*/
$schema?: string;
/**
* Default state for all rules
*/
@ -14,10 +18,6 @@ export interface Configuration {
* Path to configuration file to extend
*/
extends?: string | null;
/**
* JSON Schema URI (used by some editors)
*/
$schema?: string;
/**
* MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md001.md
*/