$ gnpm install vfile-sort
vfile
utility to sort messages.
This is a small package to sort the list of messages.
It first sorts by line/column: earlier messages come first.
When two messages occurr at the same place, sorts fatal error before warnings,
before info messages.
Finally, it sorts using localeCompare
on source
, ruleId
, or finally
reason
.
You can use this right before a reporter is used to give humans a coherent report.
This package is ESM only. In Node.js (version 14.14+ and 16.0+), install with npm:
npm install vfile-sort
In Deno with esm.sh
:
import {sort} from 'https://esm.sh/vfile-sort@3'
In browsers with esm.sh
:
<script type="module">
import {sort} from 'https://esm.sh/vfile-sort@3?bundle'
</script>
import {VFile} from 'vfile'
import {sort} from 'vfile-sort'
const file = VFile()
file.message('Error!', {line: 3, column: 1})
file.message('Another!', {line: 2, column: 2})
sort(file)
console.log(file.messages.map(d => String(d)))
// => ['2:2: Another!', '3:1: Error!']
This package exports the identifier sort
.
There is no default export.
sort(file)
Sort messages in the given vfile.
file
(VFile
)
— file to sortSorted file (VFile
).
This package is fully typed with TypeScript. It exports no additional types.
Projects maintained by the unified collective are compatible with all maintained versions of Node.js. As of now, that is Node.js 14.14+ and 16.0+. Our projects sometimes work with older versions, but this is not guaranteed.
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.
Copyright 2013 - present © cnpmjs.org | Home |