mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-01-03 22:48:49 +01:00
Move README.md History section to CHANGELOG.md using a format similar to what other projects use (fixes #694).
This commit is contained in:
parent
20d0f39c15
commit
22db339eee
6 changed files with 379 additions and 123 deletions
|
|
@ -1224,6 +1224,7 @@ test("customRulesParamsAreFrozen", (t) => {
|
|||
}
|
||||
],
|
||||
"files": [
|
||||
"CHANGELOG.md",
|
||||
"CONTRIBUTING.md",
|
||||
"README.md",
|
||||
"doc/CustomRules.md",
|
||||
|
|
|
|||
|
|
@ -81,6 +81,7 @@ test("projectFiles", (t) => new Promise((resolve) => {
|
|||
.then((module) => module.globby("doc/*.md"))
|
||||
.then((files) => [
|
||||
...files,
|
||||
"CHANGELOG.md",
|
||||
"CONTRIBUTING.md",
|
||||
"README.md",
|
||||
"helpers/README.md"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ import library from "../lib/markdownlint.js";
|
|||
const markdownlint = library.promises.markdownlint;
|
||||
|
||||
const strings = {
|
||||
"CHANGELOG": await readFile("CHANGELOG.md", "utf8"),
|
||||
"CONTRIBUTING": await readFile("CONTRIBUTING.md", "utf8"),
|
||||
"README": await readFile("README.md", "utf8"),
|
||||
"CustomRules": await readFile("./doc/CustomRules.md", "utf8"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue