Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
remark-lint-no-empty-sections
Advanced tools
This remark-lint rule was created for free-programming-books-lint to enforce free-programming-books formatting guidelines.
This rule checks that every ([#]+)heading
has some content. This content can be anything: a lower-level heading, a higher-level heading, text, list, etc. It will warn when it detects an n
-level heading without content followed by another n
-level heading.
<!-- Invalid -->
# A
## B (this section is empty!)
<!-- Invalid -->
# A
## B (this section is empty!)
## C
Some content.
<!-- Valid -->
# A
## C
Some content.
.remarkrc
npm install -g remark-cli
npm install remark-lint remark-lint-no-empty-sections
Then, set up your .remarkrc
:
{
"plugins": [
"lint",
"lint-no-empty-sections"
]
}
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-no-empty-sections
remark -u lint -u lint-no-empty-sections xxx.md
FAQs
Checks that all markdown titles have a content
We found that remark-lint-no-empty-sections 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.