Skip to content

Commit

Permalink
Update to version 0.36.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidAnson committed Oct 26, 2024
1 parent b4697d6 commit e708143
Show file tree
Hide file tree
Showing 11 changed files with 435 additions and 425 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.36.0

- Improve MD051
- Move `applyFix` and `applyFixes` from helpers to core
- Make `micromark` parser available to custom rules
- Introduce `./micromark` helpers exports
- Update custom/rule documentation
- Improve performance
- Update dependencies

## 0.35.0

- Add MD058/blanks-around-tables
Expand Down
4 changes: 2 additions & 2 deletions demo/markdownlint-browser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! markdownlint 0.35.0 https://github.com/DavidAnson/markdownlint @license MIT */
/*! markdownlint 0.36.0 https://github.com/DavidAnson/markdownlint @license MIT */
var markdownlint;
/******/ (() => { // webpackBootstrap
/******/ var __webpack_modules__ = ({
Expand Down Expand Up @@ -1406,7 +1406,7 @@ module.exports.fixableRuleNames = [
"MD058"
];
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
module.exports.version = "0.35.0";
module.exports.version = "0.36.0";


/***/ }),
Expand Down
4 changes: 2 additions & 2 deletions helpers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ be useful to custom rule authors and may avoid duplicating code.
*None* - The entire body of code is tested to 100% coverage by the core
`markdownlint` project, so there are no additional tests here.

[custom-rules]: https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/CustomRules.md
[custom-rules]: https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/CustomRules.md
[jsdoc]: https://en.m.wikipedia.org/wiki/JSDoc
[markdown]: https://en.wikipedia.org/wiki/Markdown
[markdownlint]: https://github.com/DavidAnson/markdownlint
[rules]: https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/Rules.md
[rules]: https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/Rules.md
2 changes: 1 addition & 1 deletion helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdownlint-rule-helpers",
"version": "0.26.0",
"version": "0.27.0",
"description": "A collection of markdownlint helper functions for custom rules",
"main": "./helpers.js",
"exports": {
Expand Down
208 changes: 104 additions & 104 deletions lib/configuration-strict.d.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ module.exports.fixableRuleNames = [
"MD058"
];
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
module.exports.version = "0.35.0";
module.exports.version = "0.36.0";
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdownlint",
"version": "0.35.0",
"version": "0.36.0",
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
"type": "commonjs",
"main": "./lib/markdownlint.js",
Expand Down
102 changes: 51 additions & 51 deletions schema/.markdownlint.jsonc

Large diffs are not rendered by default.

102 changes: 51 additions & 51 deletions schema/.markdownlint.yaml

Large diffs are not rendered by default.

212 changes: 106 additions & 106 deletions schema/markdownlint-config-schema-strict.json

Large diffs are not rendered by default.

212 changes: 106 additions & 106 deletions schema/markdownlint-config-schema.json

Large diffs are not rendered by default.

0 comments on commit e708143

Please sign in to comment.