Socket
Socket
Sign inDemoInstall

vfile-reporter-pretty

Package Overview
Dependencies
29
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vfile-reporter-pretty

vfile utility to create a pretty report for a file


Version published
Weekly downloads
511
decreased by-22.81%
Maintainers
1
Install size
897 kB
Created
Weekly downloads
 

Readme

Source

vfile-reporter-pretty

Build Coverage Downloads Size Sponsors Backers Chat

vfile utility to create a pretty report.

Contents

What is this?

This package is like vfile-reporter but a bit prettier.

When should I use this?

You can use this when you like eslint-formatter-pretty, use vfile-reporter itself otherwise.

Install

This package is ESM only. In Node.js (version 16+), install with npm:

npm install vfile-reporter-pretty

In Deno with esm.sh:

import {reporterPretty} from 'https://esm.sh/vfile-reporter-pretty@7'

In browsers with esm.sh:

<script type="module">
  import {reporterPretty} from 'https://esm.sh/vfile-reporter-pretty@7?bundle'
</script>

Use

import {VFile} from 'vfile'
import {reporterPretty} from 'vfile-reporter-pretty'

const file = new 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(reporterPretty([file]))

API

This package exports the identifier reporterPretty. That identifier is also the default export.

reporterPretty(files)

Create a pretty report from files.

Parameters
Returns

Report (string).

Types

This package is fully typed with TypeScript. It exports no additional types.

Compatibility

Projects maintained by the unified collective are compatible with maintained versions of Node.js.

When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, vfile-reporter-pretty@^7, compatible with Node.js 16.

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 © Sindre Sorhus

Keywords

FAQs

Last updated on 15 Jun 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc