npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

eslint-formatter-linotte

v1.1.1

Published

An ESLint formatter that logs results to linotte.dev

Readme

eslint-formatter-linotte

An ESLint formatter that logs results to linotte.dev

This formatter sends your ESLint results to linotte platform while also displaying them in your terminal using ESLint's stylish formatter. Linotte platform will provide static analysis intelligence by turning raw linting data into actionable insights, identifying code quality patterns and other trend analysis over time.

Features

  • Displays formatted ESLint results in your terminal (truncated if above 400 lines)
  • Logs ESLint results to linotte.dev for monitoring and analysis
  • Strips source code from results for privacy
  • Automatically links linter runs to git metadata if available (branch name, commit hash, author email)
  • Minimal configuration via environment variables

Prerequisites

Before using this formatter, you'll need:

  • A linotte.dev account
  • API credentials of a project created on your linotte dashboard as LINOTTE_PUBLIC_ID and LINOTTE_PRIVATE_TOKEN env variables
  • ESLint v9.x or above

Installation

# pnpm
pnpm add --save-dev eslint-formatter-linotte

# npm
npm install --save-dev eslint-formatter-linotte

# yarn
yarn add --dev eslint-formatter-linotte

Usage

Recommended:

# Using this command as a script in your package.json (e.g. "lint", or "lint:ci")
eslint . --stats --format linotte

Or in a temporary environment

# Using npx
npx eslint . --stats --format linotte

# yarn
yarn dlx eslint . --stats --format linotte

# pnpm
pnpm dlx eslint . --stats --format linotte

If properly setup, on your next linter run it should display

Configuration

This formatter requires a linotte.dev account and a pair of API keys. Configure it using environment variables.

Environment Variables

  • LINOTTE_PUBLIC_ID: Your linotte public key that should look like prj_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  • LINOTTE_PRIVATE_TOKEN: Your linotte private token that should look like "pwd_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" (make sure this key is saved between quotes " as it might contain = character throwing off env variable configurations)

Example usage with inlined environment variables:

LINOTTE_PUBLIC_ID="prj_x" LINOTTE_PRIVATE_TOKEN="pwd_x" npx eslint . --stats --format linotte

Example above is not a recommended definitive CI setup, while this is good enough for testing your API keys, we recommend setting up your env variables in your CI configuration and/or .env files (see github actions variables, gitlab ci/cd variables or dotenvx)

License

MIT

Related