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-ryuwoong

v1.0.7

Published

Personalized ESLint configuration presets for JavaScript, TypeScript, React, and React Native projects

Readme

eslint-config-ryuwoong

개인화된 ESLint 설정 프리셋 라이브러리입니다. JavaScript, TypeScript, React 프로젝트에 맞는 규칙들을 제공합니다.

설치

npm install --save-dev eslint-config-ryuwoong eslint

또는 yarn을 사용하는 경우:

yarn add --dev eslint-config-ryuwoong eslint

추가 의존성 설치 (필요에 따라)

React 프로젝트의 경우

npm install --save-dev eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-jsx-a11y

React Native 프로젝트의 경우

npm install --save-dev eslint-plugin-react-native eslint-plugin-react-native-globals

TypeScript 프로젝트의 경우

npm install --save-dev @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-plugin-import

사용법

기본 설정 (JavaScript)

.eslintrc.js 또는 .eslintrc.json 파일에 다음을 추가하세요:

module.exports = {
	extends: ["ryuwoong"],
};

React 프로젝트

module.exports = {
	extends: ["ryuwoong/react"],
};

TypeScript 프로젝트

module.exports = {
	extends: ["ryuwoong/typescript"],
};

React + TypeScript 프로젝트

module.exports = {
	extends: ["ryuwoong/react", "ryuwoong/typescript"],
};

React Native 프로젝트

module.exports = {
	extends: ["ryuwoong/react-native"],
};

React Native + TypeScript 프로젝트

module.exports = {
	extends: ["ryuwoong/react-native", "ryuwoong/typescript"],
};

포함된 규칙들

기본 규칙 (ryuwoong)

  • ESLint 권장 규칙들
  • 코드 품질 향상 규칙들 (no-console, no-debugger 등)
  • 잠재적 버그 방지 규칙들
  • 코드 포맷팅은 Prettier 등의 포맷터에 맡김

React 규칙 (ryuwoong/react)

  • 기본 규칙 + React 권장 규칙들
  • JSX 접근성 규칙 (jsx-a11y)
  • React Hooks 규칙
  • JSX 품질 및 보안 규칙들

TypeScript 규칙 (ryuwoong/typescript)

  • 기본 규칙 + TypeScript 권장 규칙들
  • Import 정렬 및 검증 규칙들
  • TypeScript 명명 규칙

React Native 규칙 (ryuwoong/react-native)

  • React 규칙 + React Native 전용 규칙들
  • React Native 글로벌 변수들 지원 (Alert, fetch, DEV 등)
  • 네이티브 컴포넌트 스타일링 규칙
  • 플랫폼별 컴포넌트 관리 규칙

커스터마이징

각 preset은 필요한 경우 프로젝트에서 추가 규칙을 덮어쓸 수 있습니다:

module.exports = {
	extends: ["ryuwoong/react"],
	rules: {
		// 프로젝트 맞춤 규칙들
		"react/prop-types": "off",
		"no-console": "off",
	},
};

React Native 프로젝트의 경우:

module.exports = {
	extends: ["ryuwoong/react-native"],
	rules: {
		// 프로젝트 맞춤 규칙들
		"react-native/no-inline-styles": "warn", // 인라인 스타일 경고로 완화
		"react-native/no-color-literals": "warn", // 색상 리터럴 경고로 완화
	},
};

배포

이 패키지를 npm에 배포하려면:

# npm 계정 로그인
npm login

# 배포 (패치 버전 증가)
npm run release

# 또는 직접 배포
npm version patch
npm publish

배포 전 체크사항

  • [ ] 모든 테스트 통과
  • [ ] README 문서 업데이트
  • [ ] 버전 번호 적절히 증가
  • [ ] 변경사항 커밋 및 푸시

기여

이슈나 풀 리퀘스트를 환영합니다! 😊

라이선스

ISC