Skip to content

utility to sort messages by line/column

License

Notifications You must be signed in to change notification settings

vfile/vfile-sort

Repository files navigation

vfile-sort

Build Coverage Downloads Size Sponsors Backers Chat

Sort vfile messages.

  • First sorts by line/column: earlier messages come first
  • If two messages occurred at the same place, sorts fatal error before warnings, before info messages
  • Otherwise, uses localeCompare to compare source, ruleId, or finally reason

Install

npm:

npm install vfile-sort

Use

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))
// => ['2:2: Another!', '3:1: Error!']

API

sort(file)

Sort messages in the given 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.

License

MIT © Titus Wormer