Skip to content

Commit 224987d

Browse files
committed
Update to version 0.38.0.
1 parent 8cb8f6c commit 224987d

10 files changed

+441
-431
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.38.0
4+
5+
- Add MD059/descriptive-link-text
6+
- Improve MD025/MD027/MD036/MD038/MD041/MD043/MD045/MD051/MD052
7+
- `markdown-it` parser no longer a production dependency (breaking change)
8+
- Add `markdownItFactory` option, remove `markdownItPlugins` option
9+
- Remove support for end-of-life Node version 18
10+
- Improve performance
11+
- Update dependencies
12+
313
## 0.37.4
414

515
- Stop using `module.createRequire`, export `resolveModule`

helpers/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ be useful to custom rule authors and may avoid duplicating code.
2222
*None* - The entire body of code is tested to 100% coverage by the core
2323
`markdownlint` project, so there are no additional tests here.
2424

25-
[custom-rules]: https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/CustomRules.md
25+
[custom-rules]: https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/CustomRules.md
2626
[jsdoc]: https://en.m.wikipedia.org/wiki/JSDoc
2727
[markdown]: https://en.wikipedia.org/wiki/Markdown
2828
[markdownlint]: https://github.com/DavidAnson/markdownlint
29-
[rules]: https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/Rules.md
29+
[rules]: https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/Rules.md

helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "markdownlint-rule-helpers",
3-
"version": "0.28.0",
3+
"version": "0.29.0",
44
"description": "A collection of markdownlint helper functions for custom rules",
55
"main": "./helpers.cjs",
66
"exports": {

lib/configuration-strict.d.ts

Lines changed: 106 additions & 106 deletions
Large diffs are not rendered by default.

lib/constants.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ export const fixableRuleNames = [
1010
"MD058"
1111
];
1212
export const homepage = "https://github.com/DavidAnson/markdownlint";
13-
export const version = "0.37.4";
13+
export const version = "0.38.0";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "markdownlint",
3-
"version": "0.37.4",
3+
"version": "0.38.0",
44
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
55
"type": "module",
66
"exports": {

schema/.markdownlint.jsonc

Lines changed: 52 additions & 52 deletions
Large diffs are not rendered by default.

schema/.markdownlint.yaml

Lines changed: 52 additions & 52 deletions
Large diffs are not rendered by default.

schema/markdownlint-config-schema-strict.json

Lines changed: 108 additions & 108 deletions
Large diffs are not rendered by default.

schema/markdownlint-config-schema.json

Lines changed: 108 additions & 108 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)