Skip to content

Commit fe02674

Browse files
committed
Update to version 0.35.0.
1 parent 6d097cc commit fe02674

11 files changed

+437
-426
lines changed

CHANGELOG.md

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

3+
## 0.35.0
4+
5+
- Add MD058/blanks-around-tables
6+
- Use `micromark` in MD001/MD003/MD009/MD010/MD013/MD014/MD019/MD021/MD023/
7+
MD024/MD025/MD039/MD042/MD043
8+
- Improve MD018/MD020/MD031/MD034/MD044
9+
- `markdown-it` parser no longer invoked by default
10+
- Add strict version of JSON schema
11+
- Improve performance
12+
- Update dependencies
13+
314
## 0.34.0
415

516
- Use `micromark` in MD027/MD028/MD036/MD040/MD041/MD046/MD048

demo/markdownlint-browser.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! markdownlint 0.34.0 https://github.com/DavidAnson/markdownlint @license MIT */
1+
/*! markdownlint 0.35.0 https://github.com/DavidAnson/markdownlint @license MIT */
22
var markdownlint;
33
/******/ (() => { // webpackBootstrap
44
/******/ var __webpack_modules__ = ({
@@ -1594,7 +1594,7 @@ module.exports.fixableRuleNames = [
15941594
"MD058"
15951595
];
15961596
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
1597-
module.exports.version = "0.34.0";
1597+
module.exports.version = "0.35.0";
15981598

15991599

16001600
/***/ }),

helpers/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ See also: [`markdownlint` built-in rule implementations][lib].
3838
*None* - The entire body of code is tested to 100% coverage by the core
3939
`markdownlint` project, so there are no additional tests here.
4040

41-
[custom-rules]: https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/CustomRules.md
41+
[custom-rules]: https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/CustomRules.md
4242
[jsdoc]: https://en.m.wikipedia.org/wiki/JSDoc
43-
[lib]: https://github.com/DavidAnson/markdownlint/tree/v0.34.0/lib
43+
[lib]: https://github.com/DavidAnson/markdownlint/tree/v0.35.0/lib
4444
[markdown]: https://en.wikipedia.org/wiki/Markdown
4545
[markdownlint]: https://github.com/DavidAnson/markdownlint
46-
[rules]: https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/Rules.md
46+
[rules]: https://github.com/DavidAnson/markdownlint/blob/v0.35.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.25.0",
3+
"version": "0.26.0",
44
"description": "A collection of markdownlint helper functions for custom rules",
55
"main": "./helpers.js",
66
"exports": "./helpers.js",

lib/configuration-strict.d.ts

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

lib/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ module.exports.fixableRuleNames = [
1212
"MD058"
1313
];
1414
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
15-
module.exports.version = "0.34.0";
15+
module.exports.version = "0.35.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.34.0",
3+
"version": "0.35.0",
44
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
55
"type": "commonjs",
66
"main": "./lib/markdownlint.js",

schema/.markdownlint.jsonc

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

schema/.markdownlint.yaml

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

schema/markdownlint-config-schema-strict.json

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

schema/markdownlint-config-schema.json

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

0 commit comments

Comments
 (0)