remark-lint-no-trailing-spaces
Version:
remark-lint rule to warn when lines end with trailing spaces
21 lines (12 loc) • 294 B
Markdown
# `no-trailing-spaces` external rule for [remark-lint](https://github.com/wooorm/remark-lint)
A remark-lint external rule to warn about any trailing whitespace.
```
`·` represents ` `.
<!-- Invalid (2 warnings) -->
# Title··
··
Hello world!
<!-- Valid -->
# Title
Hello world!
```