Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
remark-preset-lint-consistent
Advanced tools
remark preset to configure remark-lint with rules that enforce consistency
remark preset to configure remark-lint
with settings that enforce
consistency.
This preset configures remark-lint
with the following rules:
Rule | Setting |
---|---|
blockquote-indentation | 'consistent' |
checkbox-character-style | 'consistent' |
code-block-style | 'consistent' |
emphasis-marker | 'consistent' |
fenced-code-marker | 'consistent' |
heading-style | 'consistent' |
link-title-style | 'consistent' |
list-item-content-indent | |
ordered-list-marker-style | 'consistent' |
rule-style | 'consistent' |
strong-marker | 'consistent' |
table-cell-padding | 'consistent' |
npm:
npm install remark-preset-lint-consistent
You probably want to use it on the CLI through a config file:
...
"remarkConfig": {
+ "plugins": ["preset-lint-consistent"]
}
...
Or use it on the CLI directly
remark -u preset-lint-consistent readme.md
Or use this on the API:
var remark = require('remark');
var report = require('vfile-reporter');
remark()
+ .use(require('remark-preset-lint-consistent'))
.process('_Emphasis_ and **importance**', function (err, file) {
console.error(report(err || file));
});
See contributing.md
in remarkjs/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a Code of Conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.
FAQs
remark preset to configure remark-lint with rules that enforce consistency
The npm package remark-preset-lint-consistent receives a total of 57,294 weekly downloads. As such, remark-preset-lint-consistent popularity was classified as popular.
We found that remark-preset-lint-consistent demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.