[PR #1491] [CLOSED] Pr/1459 #3351

Closed
opened 2026-03-07 20:13:18 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/DavidAnson/markdownlint/pull/1491
Author: @RAPTOR1OUS
Created: 2/13/2025
Status: Closed

Base: mainHead: pr/1459


📝 Commits (10+)

  • a1c000f Start doc page for new rule
  • ddf030e Add rule and test
  • 0a60d3d Move validLink check to micromark helper
  • b575b03 Add documentation for new rule
  • 443b77c Add downcase and strip helper function
  • 9cee2db Update all tests so they pass
  • 9fbf423 Update tests
  • 47db690 update rule description
  • 2b93c7e update snapshots
  • e141567 Rename no-generic-link-name to descriptive-link-text

📊 Changes

42 files changed (+1107 additions, -182 deletions)

View changed files

📝 README.md (+3 -2)
doc-build/md059.md (+16 -0)
📝 doc/Rules.md (+29 -0)
doc/md059.md (+26 -0)
📝 lib/configuration-strict.d.ts (+24 -2)
lib/md059.mjs (+60 -0)
📝 lib/rules.mjs (+3 -1)
📝 schema/.markdownlint.jsonc (+7 -1)
📝 schema/.markdownlint.yaml (+5 -0)
📝 schema/build-config-schema.mjs (+12 -0)
📝 schema/markdownlint-config-schema-strict.json (+40 -2)
📝 schema/markdownlint-config-schema.json (+40 -2)
📝 test/bare-urls.md (+1 -1)
test/descriptive-link-text-empty-config.md (+35 -0)
test/descriptive-link-text-override.md (+23 -0)
test/descriptive-link-text.md (+32 -0)
📝 test/fixing-with-front-matter.md (+1 -1)
📝 test/link-style-no-url-inline-not-possible.md (+1 -0)
📝 test/link-style-no-url-inline-possible.md (+1 -0)
📝 test/links-alternate.md (+2 -1)

...and 22 more files

📄 Description

There are no open question or concerns. I there for i leave this link left as is this, links to go further, they take you to it.
For a further, look to the description companion. The final advice is maintain to service the link.


🔄 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/1491 **Author:** [@RAPTOR1OUS](https://github.com/RAPTOR1OUS) **Created:** 2/13/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `pr/1459` --- ### 📝 Commits (10+) - [`a1c000f`](https://github.com/DavidAnson/markdownlint/commit/a1c000fd323af90e2a781efaaa85e50bc1c91dfb) Start doc page for new rule - [`ddf030e`](https://github.com/DavidAnson/markdownlint/commit/ddf030e07fe36fdbceb2cec4bc26266c00ac98a0) Add rule and test - [`0a60d3d`](https://github.com/DavidAnson/markdownlint/commit/0a60d3d0a77174868e2c12df9463f88ccb1f6e3a) Move validLink check to micromark helper - [`b575b03`](https://github.com/DavidAnson/markdownlint/commit/b575b03e2352d0301dcf0e3f4e8b12a919795543) Add documentation for new rule - [`443b77c`](https://github.com/DavidAnson/markdownlint/commit/443b77c30ba60a194c0ceccf574d994a07222d73) Add downcase and strip helper function - [`9cee2db`](https://github.com/DavidAnson/markdownlint/commit/9cee2dbc6608b11bc42d88e16af25b5aa563309b) Update all tests so they pass - [`9fbf423`](https://github.com/DavidAnson/markdownlint/commit/9fbf42356416c6a7c8029e0b81c7a466ae87fc2f) Update tests - [`47db690`](https://github.com/DavidAnson/markdownlint/commit/47db690e505f1e43c9007d3910c649405adac7ca) update rule description - [`2b93c7e`](https://github.com/DavidAnson/markdownlint/commit/2b93c7e544822b97c56046998ba5f3384bc36c36) update snapshots - [`e141567`](https://github.com/DavidAnson/markdownlint/commit/e141567805bf22901414eda85acb9c854d0661c9) Rename no-generic-link-name to descriptive-link-text ### 📊 Changes **42 files changed** (+1107 additions, -182 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+3 -2) ➕ `doc-build/md059.md` (+16 -0) 📝 `doc/Rules.md` (+29 -0) ➕ `doc/md059.md` (+26 -0) 📝 `lib/configuration-strict.d.ts` (+24 -2) ➕ `lib/md059.mjs` (+60 -0) 📝 `lib/rules.mjs` (+3 -1) 📝 `schema/.markdownlint.jsonc` (+7 -1) 📝 `schema/.markdownlint.yaml` (+5 -0) 📝 `schema/build-config-schema.mjs` (+12 -0) 📝 `schema/markdownlint-config-schema-strict.json` (+40 -2) 📝 `schema/markdownlint-config-schema.json` (+40 -2) 📝 `test/bare-urls.md` (+1 -1) ➕ `test/descriptive-link-text-empty-config.md` (+35 -0) ➕ `test/descriptive-link-text-override.md` (+23 -0) ➕ `test/descriptive-link-text.md` (+32 -0) 📝 `test/fixing-with-front-matter.md` (+1 -1) 📝 `test/link-style-no-url-inline-not-possible.md` (+1 -0) 📝 `test/link-style-no-url-inline-possible.md` (+1 -0) 📝 `test/links-alternate.md` (+2 -1) _...and 22 more files_ </details> ### 📄 Description There are no open question or concerns. I there for i leave this link left as is this, links to go further, they take you to it. For a further, look to the description companion. The final advice is maintain to service the link. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-07 20:13:18 +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#3351
No description provided.