mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-02-25 14:24:07 +01:00
wip
This commit is contained in:
parent
d8bf33dde6
commit
4541ee3dd2
17 changed files with 395 additions and 67 deletions
|
|
@ -86,7 +86,9 @@
|
|||
// Strict length checking
|
||||
"strict": false,
|
||||
// Stern length checking
|
||||
"stern": false
|
||||
"stern": false,
|
||||
// Expand wide characters
|
||||
"wide_characters": false
|
||||
},
|
||||
|
||||
// MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md014.md
|
||||
|
|
|
|||
|
|
@ -79,6 +79,8 @@ MD013:
|
|||
strict: false
|
||||
# Stern length checking
|
||||
stern: false
|
||||
# Expand wide characters
|
||||
wide_characters: false
|
||||
|
||||
# MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md014.md
|
||||
MD014: true
|
||||
|
|
|
|||
|
|
@ -264,6 +264,12 @@ for (const rule of rules) {
|
|||
"type": "boolean",
|
||||
"default": false
|
||||
};
|
||||
// @ts-ignore
|
||||
subscheme.properties.wide_characters = {
|
||||
"description": "Expand wide characters",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
};
|
||||
break;
|
||||
case "MD022":
|
||||
// @ts-ignore
|
||||
|
|
|
|||
|
|
@ -920,6 +920,11 @@
|
|||
"description": "Stern length checking",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"wide_characters": {
|
||||
"description": "Expand wide characters",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -998,6 +1003,11 @@
|
|||
"description": "Stern length checking",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"wide_characters": {
|
||||
"description": "Expand wide characters",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -920,6 +920,11 @@
|
|||
"description": "Stern length checking",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"wide_characters": {
|
||||
"description": "Expand wide characters",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -998,6 +1003,11 @@
|
|||
"description": "Stern length checking",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"wide_characters": {
|
||||
"description": "Expand wide characters",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue