Skip to content

Commit

Permalink
feat(remark): migrate from markdownlint to remark-lint (#326)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: `markdownlint` is unsupported no longer. It may fail linting your Markdown files.

---

See also:

- https://github.com/remarkjs/remark-lint
- https://github.com/remarkjs/remark-lint/blob/master/doc/comparison-to-markdownlint.md
- https://github.com/DavidAnson/markdownlint
  • Loading branch information
ybiquitous committed Jan 30, 2019
1 parent 5bfc232 commit d629afd
Show file tree
Hide file tree
Showing 9 changed files with 1,364 additions and 242 deletions.
2 changes: 1 addition & 1 deletion .commitlintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = {
"release",
"init",
"api",
"markdownlint",
"remark",
"travis",
"prettier",
"standard-version",
Expand Down
3 changes: 0 additions & 3 deletions .markdownlint.json

This file was deleted.

1 change: 1 addition & 0 deletions .remarkignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CHANGELOG.md
2 changes: 1 addition & 1 deletion lib/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ module.exports = async function init({
const cmd = initCommand(cwd, logger);
await cmd.updatePackageFile();
await cmd.writePackageFile(".editorconfig");
await cmd.writePackageFile(".markdownlint.json");
await cmd.writePackageFile(".remarkignore");
};

module.exports.desc = `Setup npm project:
Expand Down

0 comments on commit d629afd

Please sign in to comment.