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
- VSCode
- Git
- BPMN
- useEffect
- Windows
- gradle
- mybatis
- nginx
- NCP
- IntelliJ
- wildfly
- tibero
- database
- LOG4J
- kubectl
- JavaScript
- react
- gson
- docker
- Spring
- jetbrains
- springboot
- intellijIDEA
- MySQL
- Java
- nodejs
- dbeaver
- log4j2
- Kubernetes
- JPA
Archives
- Today
- Total
두 손끝의 창조자
VSCode에서 vue파일을 Format Document를 했더니 Double Quotation으로 변경이 된다면 본문
프로그래밍언어/Javascript
VSCode에서 vue파일을 Format Document를 했더니 Double Quotation으로 변경이 된다면
codinglog 2020. 6. 3. 17:37Formatter를 Prettier 사용하고 있다는 전제하에
settings.json 파일 열기
VS Code에서 cmd + shift + p 를 눌러서 커맨드 창을 연뒤 open settings(json)를 선택해서 settings.json 파일을 연다.
설정추가
아래 설정을 추가한다.
"vetur.format.defaultFormatterOptions": {
"prettier": {
"singleQuote": true
}
}
세미콜론 자동 추가도 끄자
"vetur.format.defaultFormatterOptions": {
"prettier": {
"singleQuote": true,
"semi": false
}
}
반응형
Comments