[PR #1761] [CLOSED] Next #1685

Closed
opened 2026-03-03 02:04:39 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/DavidAnson/markdownlint/pull/1761
Author: @rodway93
Created: 9/18/2025
Status: Closed

Base: mainHead: next


📝 Commits (10+)

  • 4d5dcfb wip
  • db967fd Update test repo snapshots.
  • cdfa934 Centralize handling of newlines in error detail/context to always replace (consecutive) newlines with a single space.
  • 4ecbf9d Normalize newline characters so Linux and Windows trim error context consistently.
  • 36e957c Bump eslint-plugin-unicorn from 59.0.0 to 59.0.1
  • 5128825 Bump webpack from 5.99.7 to 5.99.8
  • b1afbf9 Add released Node version 24 to CI workflow.
  • 8bd5ad6 Bump nano-spawn from 0.2.0 to 0.2.1
  • 05bec9e Update test repo snapshots.
  • f65332a Bump eslint-plugin-jsdoc from 50.6.11 to 50.6.14

📊 Changes

106 files changed (+76370 additions, -1954 deletions)

View changed files

📝 .github/dictionary.txt (+1 -0)
.github/instructions/codacy.instructions.md (+65 -0)
📝 .github/workflows/checkers.yml (+3 -4)
📝 .github/workflows/ci.yml (+6 -6)
📝 .github/workflows/codeql-analysis.yml (+1 -1)
📝 .github/workflows/test-repos.yml (+3 -3)
.github/workflows/update-test-repos.yml (+41 -0)
📝 .gitignore (+4 -0)
📝 README.md (+26 -53)
📝 demo/browser-exports.mjs (+1 -0)
📝 demo/default.css (+4 -1)
📝 demo/default.js (+39 -20)
📝 doc-build/build-rules.mjs (+3 -3)
📝 doc-build/md001.md (+9 -0)
📝 doc-build/md010.md (+6 -0)
📝 doc-build/md033.md (+5 -1)
📝 doc-build/md055.md (+1 -1)
📝 doc-build/md056.md (+1 -1)
📝 doc-build/md059.md (+4 -1)
doc-build/md060.md (+59 -0)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/DavidAnson/markdownlint/pull/1761 **Author:** [@rodway93](https://github.com/rodway93) **Created:** 9/18/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `next` --- ### 📝 Commits (10+) - [`4d5dcfb`](https://github.com/DavidAnson/markdownlint/commit/4d5dcfb5bf19492f65674e6bd23de759c13637da) wip - [`db967fd`](https://github.com/DavidAnson/markdownlint/commit/db967fd38723736ed5b89be5a71e59b46367ccb3) Update test repo snapshots. - [`cdfa934`](https://github.com/DavidAnson/markdownlint/commit/cdfa934d8d8babcf5738993f6083c5271dc13f35) Centralize handling of newlines in error detail/context to always replace (consecutive) newlines with a single space. - [`4ecbf9d`](https://github.com/DavidAnson/markdownlint/commit/4ecbf9d945e1395cfe736df35e600702a08c0317) Normalize newline characters so Linux and Windows trim error context consistently. - [`36e957c`](https://github.com/DavidAnson/markdownlint/commit/36e957cbb36a78591bacc162b80acd656cb5a672) Bump eslint-plugin-unicorn from 59.0.0 to 59.0.1 - [`5128825`](https://github.com/DavidAnson/markdownlint/commit/512882562efa7ee6b8357e29f0fbba915e92dcaa) Bump webpack from 5.99.7 to 5.99.8 - [`b1afbf9`](https://github.com/DavidAnson/markdownlint/commit/b1afbf937d2397f9f9981ba587f208aefba1b856) Add released Node version 24 to CI workflow. - [`8bd5ad6`](https://github.com/DavidAnson/markdownlint/commit/8bd5ad6746ad1306c5ce2e38552580fadfeb36c6) Bump nano-spawn from 0.2.0 to 0.2.1 - [`05bec9e`](https://github.com/DavidAnson/markdownlint/commit/05bec9e4f121968435a9e53fd658d7ff2b768fbb) Update test repo snapshots. - [`f65332a`](https://github.com/DavidAnson/markdownlint/commit/f65332a80061bcfcf8e88b478fa6f3527eeddedf) Bump eslint-plugin-jsdoc from 50.6.11 to 50.6.14 ### 📊 Changes **106 files changed** (+76370 additions, -1954 deletions) <details> <summary>View changed files</summary> 📝 `.github/dictionary.txt` (+1 -0) ➕ `.github/instructions/codacy.instructions.md` (+65 -0) 📝 `.github/workflows/checkers.yml` (+3 -4) 📝 `.github/workflows/ci.yml` (+6 -6) 📝 `.github/workflows/codeql-analysis.yml` (+1 -1) 📝 `.github/workflows/test-repos.yml` (+3 -3) ➕ `.github/workflows/update-test-repos.yml` (+41 -0) 📝 `.gitignore` (+4 -0) 📝 `README.md` (+26 -53) 📝 `demo/browser-exports.mjs` (+1 -0) 📝 `demo/default.css` (+4 -1) 📝 `demo/default.js` (+39 -20) 📝 `doc-build/build-rules.mjs` (+3 -3) 📝 `doc-build/md001.md` (+9 -0) 📝 `doc-build/md010.md` (+6 -0) 📝 `doc-build/md033.md` (+5 -1) 📝 `doc-build/md055.md` (+1 -1) 📝 `doc-build/md056.md` (+1 -1) 📝 `doc-build/md059.md` (+4 -1) ➕ `doc-build/md060.md` (+59 -0) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 02:04:39 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/markdownlint#1685
No description provided.