Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vhf/remark-lint-no-empty-sections
remark-lint-no-empty-sections
https://github.com/vhf/remark-lint-no-empty-sections
Last synced: 17 days ago
JSON representation
remark-lint-no-empty-sections
- Host: GitHub
- URL: https://github.com/vhf/remark-lint-no-empty-sections
- Owner: vhf
- Created: 2015-12-18T10:02:34.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T04:57:59.000Z (almost 2 years ago)
- Last Synced: 2024-04-13T16:35:12.433Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 276 KB
- Stars: 9
- Watchers: 4
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# remark-lint-no-empty-sections [![Build Status](https://travis-ci.org/vhf/remark-lint-no-empty-sections.svg?branch=master)](https://travis-ci.org/vhf/remark-lint-no-empty-sections)
This [remark-lint](https://github.com/wooorm/remark-lint) rule was created for [free-programming-books-lint](https://github.com/vhf/free-programming-books-lint) to enforce [free-programming-books](https://github.com/vhf/free-programming-books) [formatting guidelines](https://github.com/vhf/free-programming-books/blob/master/CONTRIBUTING.md#formatting).
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.
## Examples
```markdown
# A
## B (this section is empty!)
``````markdown
# A
## B (this section is empty!)
## C
Some content.
``````markdown
# A
## C
Some content.
```## Using the rule
### Via `.remarkrc`
```bash
npm install -g remark-cli
npm install remark-lint remark-lint-no-empty-sections
```Then, set up your `.remarkrc`:
```JSON
{
"plugins": [
"lint",
"lint-no-empty-sections"
]
}
```Now you can use the following command to run the lint:
```bash
remark xxx.md
```### Via CLI
```bash
npm install -g remark-cli
npm install remark-lint remark-lint-no-empty-sections
remark -u lint -u lint-no-empty-sections xxx.md
```