Package Exports
- vfile-sort
- vfile-sort/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vfile-sort) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vfile-sort
vfile
utility to sort messages.
Contents
What is this?
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
.
When should I use this?
You can use this right before a reporter is used to give humans a coherent report.
Install
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>
Use
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!']
API
This package exports the identifier sort
.
There is no default export.
sort(file)
Sort messages in the given vfile.
Parameters
file
(VFile
) — file to sort
Returns
Sorted file (VFile
).
Types
This package is fully typed with TypeScript. It exports no additional types.
Compatibility
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.
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.