Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
remark-lint-books-links
Advanced tools
Checks that all resources links are formatted according to vhf/free-programming-books guidelines
This remark-lint rule was created for free-programming-books-lint to enforce free-programming-books formatting guidelines.
This rule only applies to list items starting with a link. It enforces the following things:
If an author is mentioned, it's done with ・-・
(middots represent spaces, so,
a dash surrounded by single spaces)
* [Another Awesome Book - John Doe](http://example.com/book.html)
* [Another Awesome Book](http://example.com/book.html)- John Doe
* [Another Awesome Book](http://example.com/book.html) - John Doe
Yields:
1:3-1:65: Missing a space before author
If the URL in the link refers to a PDF, that format is mentioned.
* [Another Awesome Book](http://example.com/book.pdf)(PDF)
* [Another Awesome Book](http://example.com/book.pdf)
* [Another Awesome Book](http://example.com/book.pdf) (PDF)
Yields:
1:3-1:59: Missing a space before PDF indication
2:3-2:54: Missing PDF indication
The author comes before the format:
* [Another Awesome Book](http://example.com/book.pdf)- John Doe
* [Another Awesome Book](http://example.com/book.pdf) - John Doe
* [Another Awesome Book](http://example.com/book.pdf) - John Doe (PDF)
Yields:
1:3-1:64: Missing a space before author
1:3-1:64: Missing PDF indication
2:3-2:65: Missing PDF indication
.remarkrc
npm install -g remark-cli
npm install remark-lint remark-lint-books-links
Then, set up your .mdastrc
:
{
"plugins": [
"lint",
"lint-books-links"
]
}
Now you can use the following command to run the lint:
remark xxx.md
npm install -g remark-cli
npm install remark-lint remark-lint-books-links
remark -u lint -u lint-books-links xxx.md
FAQs
Checks that all resources links are formatted according to vhf/free-programming-books guidelines
We found that remark-lint-books-links demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.