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/prettier-config

v1.0.2

Published

Prettier configurations for Rendar Mono Template

Readme

@rendardev/prettier-config

Rendar Mono Template 프로젝트를 위한 공유 Prettier 설정입니다.

설치

npm install --save-dev @rendardev/prettier-config
# 또는
yarn add -D @rendardev/prettier-config
# 또는
pnpm add -D @rendardev/prettier-config

사용 방법

package.json에서 사용하기

package.json에 다음과 같이 추가하세요:

{
  "prettier": "@rendardev/prettier-config"
}

.prettierrc 파일에서 사용하기

.prettierrc 파일을 생성하고 다음과 같이 설정하세요:

"@rendardev/prettier-config"

또는 .prettierrc.js 파일을 생성하고 다음과 같이 설정하세요:

module.exports = require("@rendardev/prettier-config");

설정 오버라이드하기

기본 설정을 확장하거나 오버라이드하려면 다음과 같이 할 수 있습니다:

{
  "prettier": "@rendardev/prettier-config",
  "printWidth": 100,
  "singleQuote": false
}

또는 .prettierrc.js를 사용하는 경우:

module.exports = {
  ...require("@rendardev/prettier-config"),
  printWidth: 100,
  singleQuote: false,
};

이렇게 하면 기본 설정을 유지하면서 특정 규칙만 변경할 수 있습니다.

설정 내용

이 설정은 다음과 같은 Prettier 규칙을 포함합니다:

  • printWidth: 80 (한 줄의 최대 길이)
  • tabWidth: 2 (들여쓰기 크기)
  • useTabs: false (스페이스 사용)
  • semi: true (세미콜론 사용)
  • singleQuote: true (작은따옴표 사용)
  • quoteProps: "as-needed" (필요한 경우에만 객체 속성에 따옴표 사용)
  • trailingComma: "es5" (ES5 호환 후행 쉼표)
  • bracketSpacing: true (객체 리터럴의 중괄호 내부 공백)
  • arrowParens: "avoid" (단일 매개변수 화살표 함수의 괄호 생략)
  • proseWrap: "preserve" (마크다운 텍스트 줄바꿈 보존)
  • endOfLine: "auto" (자동 개행 문자 설정)
  • htmlWhitespaceSensitivity: "css" (CSS 기반 HTML 공백 처리)
  • embeddedLanguageFormatting: "off" (내장 언어 포매팅 비활성화)

요구사항

  • Prettier 버전 3.0.0 이상

라이선스

MIT