-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prettier 모듈 내 README.md 추가 / trailingComma 옵션 수정
- Loading branch information
1 parent
a33fc35
commit baebe84
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
}; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters