티스토리 뷰
- 저장시 사용하지 않는 import 자동 삭제
- 설정 방법
1. 단축키 ctrl + shift + p 입력
2. Preference: Configure Language Specific Settings 선택..
3. 설정 적용할 언어 선택(예 java, typescript, c..) -> settings.json파일 실행됨
4. settings.json파일에 아래와 같이 등록
"[java]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true
}
}
"[typescript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true
}
}
"[c]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true
}
}
'개발(Dev) > (01) 클라이언트 개발' 카테고리의 다른 글
Ionic 기본 명령어 (0) | 2018.05.08 |
---|---|
Angular 기본 명령어 (0) | 2018.05.08 |