Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Source
- 단축키
- Mac
- find
- 줄바꿈 문자
- GIT
- plugin
- profile
- JavaScript
- lsof
- maVen
- 네트워크
- xargs
- tomcat
- Windows 10
- vscode
- netsh
- context
- resource
- grep
- Eclipse
- Windows
- import
- VirtualBox
- web.xml
- bash
- port
- Quartz
- IntelliJ
- ssh
Archives
- Today
- Total
develog
[vscode] prettier 설치 본문
vscode 에 Prettier 플러그인을 설치한다
prettier 패키지 설치
npm install prettier --save-dev --save-exact
yarn add prettier --dev --exact
.prettierrc 설정 파일
// .prettierrc
{
"singleQuote": true,
"trailingComma": "es5",
"useTabs": false,
"tabWidth": 2,
"semi": true,
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 80
}
파일 포멧팅하기
# 모든 파일 포멧팅
npx prettier . --write
# index.js 파일 포멧팅
npx prettier src/index.js --write
Default Formatter 를 Prettier 로 설정한다
Prettier 설치
https://prettier.io/docs/en/install
Prettier · Opinionated Code Formatter
Opinionated Code Formatter
prettier.io
Prettier 설정
https://prettier.io/docs/en/options
Prettier · Opinionated Code Formatter
Opinionated Code Formatter
prettier.io
Comments