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

@rendardev/eslint-config

v1.0.2

Published

ESLint configurations for Rendar Mono Template

Readme

@rendar-mono-template/eslint-config

ESLint 설정 모음으로, Rendar Mono Template 프로젝트에서 일관된 코드 스타일과 품질을 유지하기 위해 설계되었습니다.

설치

# NPM
npm install --save-dev @rendardev/eslint-config

# Yarn
yarn add --dev @rendardev/eslint-config

# PNPM
pnpm add -D @rendardev/eslint-config

사용 방법

이 패키지는 다양한 개발 환경을 위한 여러 ESLint 설정을 제공합니다. 프로젝트의 루트에 .eslintrc.js 파일을 생성하고 필요한 설정을 확장하여 사용하세요.

기본 설정 (일반 JavaScript/TypeScript)

// .eslintrc.js
module.exports = {
  extends: ["@rendardev/eslint-config"],
};

React 프로젝트

// .eslintrc.js
module.exports = {
  extends: ["@rendardev/eslint-config/react"],
};

Next.js 프로젝트

// .eslintrc.js
module.exports = {
  extends: ["@rendardev/eslint-config/next"],
};

강화된 TypeScript 타입 체크

TypeScript 프로젝트에 더 강력한 타입 체크를 적용하려면:

// .eslintrc.js
module.exports = {
  extends: ["@rendardev/eslint-config", "@rendardev/eslint-config/typeCheck"],
};

Prettier 통합

Prettier와 함께 사용하려면:

// .eslintrc.js
module.exports = {
  extends: [
    "@rendar-mono-template/eslint-config",
    "@rendar-mono-template/eslint-config/prettier",
  ],
};

제공되는 설정 파일

이 패키지는 다음과 같은 설정 파일을 제공합니다:

  • base.js - 기본 ESLint 설정 (내부적으로 사용됨)
  • index.js - 기본 JavaScript/TypeScript 규칙
  • react.js - React 프로젝트를 위한 규칙
  • next.js - Next.js 프로젝트를 위한 규칙
  • typeCheck.js - 강화된 TypeScript 타입 체크 규칙
  • prettier.js - ESLint와 Prettier 통합 설정

추천 사용 조합

React + TypeScript 프로젝트

module.exports = {
  extends: [
    "@rendar-mono-template/eslint-config",
    "@rendar-mono-template/eslint-config/react",
    "@rendar-mono-template/eslint-config/typeCheck",
    "@rendar-mono-template/eslint-config/prettier",
  ],
};

Next.js + TypeScript 프로젝트

module.exports = {
  extends: [
    "@rendar-mono-template/eslint-config",
    "@rendar-mono-template/eslint-config/next",
    "@rendar-mono-template/eslint-config/typeCheck",
    "@rendar-mono-template/eslint-config/prettier",
  ],
};

규칙 사용자 정의

기본 설정을 확장하면서 프로젝트 특정 규칙을 추가하거나 재정의할 수 있습니다:

// .eslintrc.js
module.exports = {
  extends: ["@rendar-mono-template/eslint-config"],
  rules: {
    // 사용자 정의 규칙
    "no-console": "warn",
    "react/jsx-sort-props": "error",
  },
};