-
Notifications
You must be signed in to change notification settings - Fork 0
vscode
jaeseok.an edited this page Aug 4, 2020
·
2 revisions
- plugin - vetur, prettier
- prettier formatter install
- 설정 : 안하면 warning많이 발생함
- Arrow Parens => always
- Trailing comma => all
- single quote => true (double quote 대신 single quote사용)
-
"settings": {
"explorer.confirmDelete": false,
"window.zoomLevel": 0,
"editor.formatOnPaste": true,\ "explorer.confirmDragAndDrop": false,
"prettier.arrowParens": "always",
"prettier.trailingComma": "all",
"prettier.printWidth": 120,
"workbench.iconTheme": "vscode-icons",
"editor.formatOnSave": true,
"prettier.singleQuote": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"javascript.format.enable": false,
"typescript.updateImportsOnFileMove.enabled": "always"
}
- 설정 : 안하면 warning많이 발생함
test