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 🙏

© 2026 – Pkg Stats / Ryan Hefner

eslint-plugin-dsmonitor

v0.1.1

Published

ESLint plugin wrapper for dsmonitor. Re-exports dsmonitor/eslint to satisfy ESLint legacy config's automatic plugin resolution.

Readme

eslint-plugin-dsmonitor

ESLint plugin wrapper for dsmonitor.

한국어

ESLint legacy config(.eslintrc.js)는 plugin을 eslint-plugin-{name} 형식으로 자동 검색합니다. dsmonitor는 CLI 도구와 ESLint plugin이 통합된 패키지라 패키지명이 eslint-plugin-dsmonitor가 아닙니다.

이 wrapper 패키지는 dsmonitor/eslint를 그대로 재노출하여 ESLint가 자동으로 plugin을 찾을 수 있게 합니다 (1줄짜리 re-export).

설치

npm install --save-dev dsmonitor eslint-plugin-dsmonitor

호환

이 wrapper 측 dsmonitor >=0.1.7 측 호환합니다 (0.2.x / 0.3.x 포함).

사용법

.eslintrc.js:

const { fromPolicy } = require("dsmonitor/eslint");
const stylingPolicy = require("./dsmonitor/stylingPolicy");

const policyConfig = fromPolicy(stylingPolicy, {
  baselinePath: "./dsmonitor/lint-baseline.json",
});

module.exports = {
  extends: ["next/core-web-vitals"],
  plugins: policyConfig.plugins,
  rules: policyConfig.rules,
  overrides: policyConfig.overrides,
};

policyConfig.plugins["dsmonitor"]를 반환하며, ESLint가 자동으로 eslint-plugin-dsmonitor (이 wrapper)를 require합니다.

Note

이 패키지의 모든 룰 정의 / API는 dsmonitor 패키지 안에 있습니다. 변경 / 업데이트는 dsmonitor 메인 repo에서 진행됩니다.

English

ESLint legacy config (.eslintrc.js) automatically resolves plugins by the eslint-plugin-{name} convention. Since dsmonitor is a unified package (CLI + ESLint plugin) named dsmonitor (not eslint-plugin-dsmonitor), ESLint cannot auto-resolve it directly.

This wrapper re-exports dsmonitor/eslint under the expected name (a 1-line re-export).

Installation

npm install --save-dev dsmonitor eslint-plugin-dsmonitor

Compatibility

This wrapper is compatible with dsmonitor >=0.1.7 (including 0.2.x / 0.3.x).

Usage

.eslintrc.js:

const { fromPolicy } = require("dsmonitor/eslint");
const stylingPolicy = require("./dsmonitor/stylingPolicy");

const policyConfig = fromPolicy(stylingPolicy, {
  baselinePath: "./dsmonitor/lint-baseline.json",
});

module.exports = {
  extends: ["next/core-web-vitals"],
  plugins: policyConfig.plugins,
  rules: policyConfig.rules,
  overrides: policyConfig.overrides,
};

policyConfig.plugins returns ["dsmonitor"], which ESLint resolves to eslint-plugin-dsmonitor (this wrapper) automatically.

Note

All rule definitions / APIs live in the dsmonitor package itself. Changes and updates happen in the dsmonitor main repo.

License

MIT