Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kellyselden/vfile-reporter-junit

jUnit reporter for VFile
https://github.com/kellyselden/vfile-reporter-junit

Last synced: 16 days ago
JSON representation

jUnit reporter for VFile

Awesome Lists containing this project

README

        

# vfile-reporter-junit

[![npm version](https://badge.fury.io/js/vfile-reporter-junit.svg)](https://badge.fury.io/js/vfile-reporter-junit)

jUnit reporter for VFile

## Usage

```js
const remark = require('remark');
const recommended = require('remark-preset-lint-recommended');
const vfileReporterJunit = require('vfile-reporter-junit');

let file = remark()
.use(recommended)
.processSync('## Hello world!')

console.log(await vfileReporterJunit([file]))
```

```sh
remark . --use preset-lint-recommended --report junit
```

```xml

```