단축키 ctrl + shift + p 입력
Preference: Configure Language Specific Settings 선택
설정 적용할 언어 선택(예 java, typescript, c..) -> settings.json파일 실행됨
settings.json파일에 아래와 같이 등록(추가)
"[dart]": {
"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
}
}