File tree Expand file tree Collapse file tree 6 files changed +25
-5
lines changed Expand file tree Collapse file tree 6 files changed +25
-5
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 6.4 .0"
2+ "." : " 6.5 .0"
33}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 6.5.0] ( https://github.com/eslint/markdown/compare/v6.4.0...v6.5.0 ) (2025-06-02)
4+
5+
6+ ### Features
7+
8+ * add ` no-missing-atx-heading-space ` rule ([ #371 ] ( https://github.com/eslint/markdown/issues/371 ) ) ([ 84c87c4] ( https://github.com/eslint/markdown/commit/84c87c407bdfb64694581afb26066a5b233bd59c ) )
9+ * add no-empty-definitions rule ([ #364 ] ( https://github.com/eslint/markdown/issues/364 ) ) ([ cb5a956] ( https://github.com/eslint/markdown/commit/cb5a95666524e3c26650371bfdcd59e15cae4053 ) )
10+ * add no-multiple-h1 rule ([ #377 ] ( https://github.com/eslint/markdown/issues/377 ) ) ([ d7c88e8] ( https://github.com/eslint/markdown/commit/d7c88e898b251cb1bf9eb3b19075b6b6c4a4d255 ) )
11+ * add require-alt-text rule ([ #368 ] ( https://github.com/eslint/markdown/issues/368 ) ) ([ 32d8cbd] ( https://github.com/eslint/markdown/commit/32d8cbd8b6d2d121225b5291c2f9a0ea6c2ccd00 ) )
12+ * added new rule ` table-column-count ` ([ #392 ] ( https://github.com/eslint/markdown/issues/392 ) ) ([ c685139] ( https://github.com/eslint/markdown/commit/c68513942c0735fc7fbae7edbc95a36093a30ee0 ) )
13+ * create ` no-duplicate-definitions ` ([ #360 ] ( https://github.com/eslint/markdown/issues/360 ) ) ([ 18c7d77] ( https://github.com/eslint/markdown/commit/18c7d776c768b901a0049b6e9bd7cf9e060ae835 ) )
14+ * create ` no-empty-images ` ([ #357 ] ( https://github.com/eslint/markdown/issues/357 ) ) ([ 23e4ff0] ( https://github.com/eslint/markdown/commit/23e4ff0d7be9e10ce017357cb5f8e15276c6c404 ) )
15+
16+
17+ ### Bug Fixes
18+
19+ * ` no-invalid-label-refs ` do not report correct position ([ #366 ] ( https://github.com/eslint/markdown/issues/366 ) ) ([ ed01747] ( https://github.com/eslint/markdown/commit/ed01747d29eed0b1379211bb1d97d3dbff3389c8 ) )
20+ * ` no-missing-label-refs ` rule does not respect escaping ([ #348 ] ( https://github.com/eslint/markdown/issues/348 ) ) ([ cb6b437] ( https://github.com/eslint/markdown/commit/cb6b4376e94f2f89a100352d01857ad08deff652 ) )
21+ * update ` require-alt-text ` rule to ignore commented images ([ #385 ] ( https://github.com/eslint/markdown/issues/385 ) ) ([ b2fc801] ( https://github.com/eslint/markdown/commit/b2fc801727eb7ed554e74a9cf690c4777b66ff72 ) )
22+
323## [ 6.4.0] ( https://github.com/eslint/markdown/compare/v6.3.0...v6.4.0 ) (2025-04-17)
424
525
Original file line number Diff line number Diff line change 11{
22 "name" : " @eslint/markdown" ,
3- "version" : " 6.4 .0" ,
3+ "version" : " 6.5 .0" ,
44 "exports" : " ./dist/esm/index.js" ,
55 "publish" : {
66 "include" : [
Original file line number Diff line number Diff line change 11{
22 "name" : " @eslint/markdown" ,
3- "version" : " 6.4 .0" ,
3+ "version" : " 6.5 .0" ,
44 "description" : " The official ESLint language plugin for Markdown" ,
55 "license" : " MIT" ,
66 "author" : {
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ let recommendedPlugins, processorPlugins;
6060const plugin = {
6161 meta : {
6262 name : "@eslint/markdown" ,
63- version : "6.4 .0" , // x-release-please-version
63+ version : "6.5 .0" , // x-release-please-version
6464 } ,
6565 processors : {
6666 markdown : processor ,
Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ function postprocess(messages, filename) {
467467export const processor = {
468468 meta : {
469469 name : "@eslint/markdown/markdown" ,
470- version : "6.4 .0" , // x-release-please-version
470+ version : "6.5 .0" , // x-release-please-version
471471 } ,
472472 preprocess,
473473 postprocess,
You canβt perform that action at this time.
0 commit comments