mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
Update to version 0.29.0.
This commit is contained in:
parent
b3c20f717b
commit
d01180ec5a
5 changed files with 15 additions and 6 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -1,5 +1,14 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.29.0
|
||||||
|
|
||||||
|
- Update `micromark` parser dependencies for better performance
|
||||||
|
- Use `micromark` in MD049/MD050
|
||||||
|
- Improve MD034/MD037/MD044/MD049/MD050
|
||||||
|
- Support multiple parsers in demo page
|
||||||
|
- Remove support for end-of-life Node version 14
|
||||||
|
- Update dependencies
|
||||||
|
|
||||||
## 0.28.2
|
## 0.28.2
|
||||||
|
|
||||||
- Update dependencies for CVE-2023-2251
|
- Update dependencies for CVE-2023-2251
|
||||||
|
|
@ -13,7 +22,7 @@
|
||||||
- Introduce `micromark` parser for better positional data (internal only)
|
- Introduce `micromark` parser for better positional data (internal only)
|
||||||
- Use `micromark` in MD013/MD033/MD034/MD035/MD038/MD044/MD052/MD053
|
- Use `micromark` in MD013/MD033/MD034/MD035/MD038/MD044/MD052/MD053
|
||||||
- Simplify file-based test cases
|
- Simplify file-based test cases
|
||||||
- Unify browser script for demo
|
- Unify browser script for demo page
|
||||||
- Update dependencies
|
- Update dependencies
|
||||||
|
|
||||||
## 0.27.0
|
## 0.27.0
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/*! markdownlint 0.28.2 https://github.com/DavidAnson/markdownlint @license MIT */
|
/*! markdownlint 0.29.0 https://github.com/DavidAnson/markdownlint @license MIT */
|
||||||
var markdownlint;
|
var markdownlint;
|
||||||
/******/ (() => { // webpackBootstrap
|
/******/ (() => { // webpackBootstrap
|
||||||
/******/ var __webpack_modules__ = ({
|
/******/ var __webpack_modules__ = ({
|
||||||
|
|
@ -1613,7 +1613,7 @@ module.exports.referenceLinkImageData = function () {
|
||||||
module.exports.deprecatedRuleNames = ["MD002", "MD006"];
|
module.exports.deprecatedRuleNames = ["MD002", "MD006"];
|
||||||
module.exports.fixableRuleNames = ["MD004", "MD005", "MD006", "MD007", "MD009", "MD010", "MD011", "MD012", "MD014", "MD018", "MD019", "MD020", "MD021", "MD022", "MD023", "MD026", "MD027", "MD030", "MD031", "MD032", "MD034", "MD037", "MD038", "MD039", "MD044", "MD047", "MD049", "MD050", "MD051", "MD053"];
|
module.exports.fixableRuleNames = ["MD004", "MD005", "MD006", "MD007", "MD009", "MD010", "MD011", "MD012", "MD014", "MD018", "MD019", "MD020", "MD021", "MD022", "MD023", "MD026", "MD027", "MD030", "MD031", "MD032", "MD034", "MD037", "MD038", "MD039", "MD044", "MD047", "MD049", "MD050", "MD051", "MD053"];
|
||||||
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
|
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
|
||||||
module.exports.version = "0.28.2";
|
module.exports.version = "0.29.0";
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "markdownlint-rule-helpers",
|
"name": "markdownlint-rule-helpers",
|
||||||
"version": "0.19.0",
|
"version": "0.20.0",
|
||||||
"description": "A collection of markdownlint helper functions for custom rules",
|
"description": "A collection of markdownlint helper functions for custom rules",
|
||||||
"main": "./helpers.js",
|
"main": "./helpers.js",
|
||||||
"exports": "./helpers.js",
|
"exports": "./helpers.js",
|
||||||
|
|
|
||||||
|
|
@ -11,4 +11,4 @@ module.exports.fixableRuleNames = [
|
||||||
"MD044", "MD047", "MD049", "MD050", "MD051", "MD053"
|
"MD044", "MD047", "MD049", "MD050", "MD051", "MD053"
|
||||||
];
|
];
|
||||||
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
|
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
|
||||||
module.exports.version = "0.28.2";
|
module.exports.version = "0.29.0";
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "markdownlint",
|
"name": "markdownlint",
|
||||||
"version": "0.28.2",
|
"version": "0.29.0",
|
||||||
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
|
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"main": "./lib/markdownlint.js",
|
"main": "./lib/markdownlint.js",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue