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-checkbox-character-style
Advanced tools
remark-lint rule to warn when list item checkboxes violate a given style
Warn when list item checkboxes violate a given style.
Options: Object
or 'consistent'
, default: 'consistent'
.
'consistent'
detects the first used checked and unchecked checkbox
styles and warns when subsequent checkboxes use different styles.
Styles can also be passed in like so:
{ checked: 'x', unchecked: ' ' }
remark-stringify
formats checked checkboxes using x
and unchecked checkboxes as ``.
See Using remark to fix your markdown on how to automatically fix warnings for this rule.
This rule is included in the following presets:
Preset | Setting |
---|---|
remark-preset-lint-consistent | 'consistent' |
valid.md
When configured with { checked: 'x' }
.
- [x] List item
- [x] List item
No messages.
valid.md
When configured with { checked: 'X' }
.
- [X] List item
- [X] List item
No messages.
valid.md
When configured with { unchecked: ' ' }
.
Note: ·
represents a space.
- [ ] List item
- [ ] List item
- [ ]··
- [ ]
No messages.
valid.md
When configured with { unchecked: '\t' }
.
Note: »
represents a tab.
- [»] List item
- [»] List item
No messages.
invalid.md
Note: »
represents a tab.
- [x] List item
- [X] List item
- [ ] List item
- [»] List item
2:4-2:5: Checked checkboxes should use `x` as a marker
4:4-4:5: Unchecked checkboxes should use ` ` as a marker
invalid.md
When configured with { unchecked: '!' }
.
1:1: Invalid unchecked checkbox marker `!`: use either `'\t'`, or `' '`
invalid.md
When configured with { checked: '!' }
.
1:1: Invalid checked checkbox marker `!`: use either `'x'`, or `'X'`
npm install remark-lint-checkbox-character-style
You probably want to use it on the CLI through a config file:
...
"remarkConfig": {
"plugins": [
...
"lint",
+ "lint-checkbox-character-style",
...
]
}
...
Or use it on the CLI directly
remark -u lint -u lint-checkbox-character-style readme.md
Or use this on the API:
var remark = require('remark');
var report = require('vfile-reporter');
remark()
.use(require('remark-lint'))
+ .use(require('remark-lint-checkbox-character-style'))
.process('_Emphasis_ and **importance**', function (err, file) {
console.error(report(err || file));
});
FAQs
remark-lint rule to warn when list item checkboxes violate a given style
The npm package remark-lint-checkbox-character-style receives a total of 55,447 weekly downloads. As such, remark-lint-checkbox-character-style popularity was classified as popular.
We found that remark-lint-checkbox-character-style 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
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.