Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/efiand/gulp-remark-lint
Gulp task using remark and remark-lint to lint markdown files and output stylish results
https://github.com/efiand/gulp-remark-lint
npm-package portfolio-project
Last synced: about 21 hours ago
JSON representation
Gulp task using remark and remark-lint to lint markdown files and output stylish results
- Host: GitHub
- URL: https://github.com/efiand/gulp-remark-lint
- Owner: efiand
- Created: 2023-01-17T20:34:55.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-18T11:10:30.000Z (almost 2 years ago)
- Last Synced: 2024-09-04T02:40:17.794Z (2 months ago)
- Topics: npm-package, portfolio-project
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/gulp-remark-lint
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gulp-remark-lint
> Gulp task using remark and remark-lint to lint markdown files and output
> stylish results## Install
```
$ npm i -DE gulp-remark-lint
```## Usage
Outputs results to stdout.
```js
import gulp from gulp;
import lint from 'gulp-remark-lint';export default lintMarkdown = () => gulp.src('source/**/*.md')
.pipe(lint({
'definition-case': false,
'emphasis-marker': '_'
}));
```## License
MIT © [Andrey N Efimov](https://efiand.ru)