vfile-reporter-pretty
Create a pretty report for a vfile.
Install
npm:
npm install vfile-reporter-pretty
Use
const vfile = require('vfile')
const vfileReporterPretty = require('vfile-reporter-pretty')
const file = vfile({path: '~/example.md'})
file.message('`braavo` is misspelt; did you mean `bravo`?', {line: 1, column: 8})
file.info('This is perfect', {line: 2, column: 1})
try {
file.fail('This is horrible', {line: 3, column: 5})
} catch (error) {}
console.log(vfileReporterPretty([file]))
vfileReporterPretty(files)
Create a report (string
) for the given files.
files
List of files (Array.<VFile>
).
Contribute
See contributing.md
in vfile/.github
for ways to get started. See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.