Skip to content

Commit

Permalink
prettier 모듈 내 README.md 추가 / trailingComma 옵션 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
youngseo-kangg committed Jan 22, 2025
1 parent a33fc35 commit baebe84
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions packages/prettier/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# prettier

개발 환경에서 사용하는 prettier 설정을 정리한 bundle 입니다.

---

## 설명

```
module.exports = {
// 문자열에서 쌍따옴표 (")를 사용합니다.
singleQuote: false,
// 세미콜론(;)을 사용하여 문장을 종료합니다.
semi: true,
// 탭 너비를 2칸으로 설정합니다.
tabWidth: 2,
// 들여쓰기 시 스페이스(공백)을 사용합니다.
useTabs: false,
// 쉼표를 추가하지 않음
trailingComma: "none",
// 한 줄의 최대 길이를 100자로 제한합니다.
printWidth: 100,
// 화살표 함수의 매개변수를 항상 괄호로 감쌉니다.
arrowParens: "always",
};
```
2 changes: 1 addition & 1 deletion packages/prettier/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
semi: true,
tabWidth: 2,
useTabs: false,
trailingComma: "all",
trailingComma: "none",
printWidth: 100,
arrowParens: "always",
};

0 comments on commit baebe84

Please sign in to comment.