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-config-minsug

v0.1.13

Published

Minsug shareable ESLint config (v9 Flat)

Downloads

20

Readme

eslint-config-minsug

소개

eslint-config-minsug는 TypeScript + React 프로젝트를 위한 ESLint 9 플랫(Flat) 구성 공유 패키지입니다. 실사용 현장에서 검증된 추천 규칙과 import/정렬, Prettier 연동을 함께 제공하므로 별도 설정 없이 일관된 코드 품질을 확보할 수 있습니다.

요구 사항

  • eslint 9 이상 (Flat Config 전용)
  • ESM 기반 구성 파일(eslint.config.js 또는 eslint.config.mjs)
  • 프로젝트에 tsconfig.json이 존재해야 typescript-eslint 타입 체크 규칙이 활성화됩니다.

설치

npm install --save-dev eslint@^9 eslint-config-minsug
# 또는 pnpm/yarn 등 선호하는 패키지 매니저 사용

사용 예시 (Flat Config)

// eslint.config.mjs
import minsugConfig from "eslint-config-minsug";

const [ignoreConfig, baseConfig] = minsugConfig;

export default [
  ignoreConfig,
  {
    ...baseConfig,
    files: ["**/*.{ts,tsx,js,jsx}"],
  },
];

또는

import { defineConfig } from "eslint/config";
import minsugConfig from "eslint-config-minsug";

export default defineConfig([
  { files: ["**/*.{ts,tsx,js,jsx}"], extends: [minsugConfig] },
]);

위 예시는 dist 디렉터리를 전역 제외 대상으로 유지하면서 TypeScript/JavaScript/React 파일에만 규칙을 적용합니다.

포함된 주요 규칙

  • 기본 세트: @eslint/jsrecommended, typescript-eslintrecommendedTypeChecked
  • React & UI: eslint-plugin-react, eslint-plugin-react-hooks 최신 추천, eslint-plugin-jsx-a11y
  • Import 품질: eslint-plugin-import, eslint-plugin-unused-imports, eslint-plugin-simple-import-sort
  • 코드 포맷: eslint-plugin-prettier로 Prettier 포맷 오류를 ESLint 에러로 처리
  • 팀 컨벤션: _ prefix 파라미터 허용, no-consolewarn/error만 예외, 타입 import 일관성과 switch exhaustiveness 강제