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 |
Tags
- VirtualBox
- xargs
- grep
- Mac
- Quartz
- Windows 10
- Source
- web.xml
- 줄바꿈 문자
- ssh
- context
- Windows
- bash
- plugin
- port
- maVen
- JavaScript
- IntelliJ
- GIT
- Eclipse
- resource
- vscode
- find
- lsof
- netsh
- profile
- import
- tomcat
- 단축키
- 네트워크
Archives
- Today
- Total
목록2024/11/01 (2)
develog
[vscode] 정규식 검색 ?<!
// FIND_TXT2 가 있는 모든 라인 중 FIND_TXT1 가 포함된 라인은 제외한다// (?
카테고리 없음
2024. 11. 1. 17:20
[vscode] prettier 설치
vscode 에 Prettier 플러그인을 설치한다prettier 패키지 설치npm install prettier --save-dev --save-exactyarn 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 pre..
카테고리 없음
2024. 11. 1. 16:16