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 |
29 | 30 | 31 |
Tags
- import
- VirtualBox
- Source
- Quartz
- web.xml
- 단축키
- vscode
- lsof
- ssh
- 네트워크
- tomcat
- JavaScript
- port
- Mac
- 줄바꿈 문자
- GIT
- profile
- context
- Eclipse
- bash
- netsh
- maVen
- xargs
- Windows 10
- find
- IntelliJ
- resource
- Windows
- grep
- plugin
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 설정
https://prettier.io/docs/en/options
Comments