vfile-sort
Sort vfile messages by line/column.
Installation
npm:
npm install vfile-sort
Usage
var vfile = require('vfile')
var sort = require('vfile-sort')
var file = vfile()
file.message('Error!', {line: 3, column: 1})
file.message('Another!', {line: 2, column: 2})
sort(file)
console.log(file.messages.map(String))
API
sort(file)
Sort messages in the given vfile.
Contribute
See contributing.md
in vfile/vfile
for ways to get started.
This organisation has a Code of Conduct. By interacting with this
repository, organisation, or community you agree to abide by its terms.
License
MIT © Titus Wormer