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

@musma/eslint-config-react

v0.1.16

Published

Musma's ESLint config with React

Readme

@musma/eslint-config

무스마 ESLint Config 입니다. Typescript를 사용하는 모든 프로젝트에서 사용하여 코딩 컨벤션을 유지하도록 합시다.

설치방법

  1. 루트 디렉토리에 .npmrc 파일을 생성합니다. (주의! 루트 디렉토리입니다. 프로젝트내에서 하는게 아닙니다.)
vi ~/.npmrc
  1. 루트 디렉토리의 .npmrc 파일에 아래의 내용을 넣습니다. 토큰 발급 방법은 https://musma.github.io/2019/09/30/github-package-registry.html
@musma:registry=https://npm.pkg.github.com/
//npm.pkg.github.com/:_authToken={자신의토큰}
  1. 프로젝트내에 .npmrc 파일 생성 (이미 있다면 패쓰!)
vi .npmrc
  1. 프로젝트내에 .npmrc 파일에 아래 내용 추가
@musma:registry=https://npm.pkg.github.com/
  1. @musma/eslint-config 의존성 설치
yarn add -D @musma/eslint-config
  1. 프로잭트내에 .eslintrc 파일 생성(이미 있다면 패쓰!)
vi .eslintrc
  1. 프로젝트내에 .eslintrc 파일에 아래의 내용을 추가합니다.
{
  "extends": ["@musma"]
}

Lint, Prettier가 작동하지 않을 경우

  1. VS Code 에서 Command + , 를 클릭하여 설정 페이지를 연다

스크린샷 2022-06-30 오후 2 00 12

  1. 사용자 탭에서 화면 상단의 JSON 열기 버튼을 클릭한다.

  2. 개인이 사용하는 VS Code Theme 관련 코드를 제외하고 모두 없앤다.

License

Open source licensed as MIT.

  • @typescript-eslint/parser : 타입스크립트에서 ESLint를 사용할 수 있게 하는 파서
  • @typescript-eslint/eslint-plugin: 코드 베이스에서 ESLint 규칙을 적용하는 플러그인
  • eslint-config-prettier: 불필요하거나 Prettier와 충돌할 수 있는 모든 규칙을 비활성화
  • eslint-plugin-prettier: 코드 포매팅할 때 Prettier를 사용하게 만드는 규칙 추가