인프런 커뮤니티 질문&답변
파일을 클릭하면 제일 1번라인 import에 빨간줄 문의드립니다
작성
·
1.2K
답변 1
0
윤상석
지식공유자
vscode 에디터에서 eslint를 파싱하지 못하는 이슈일 가능성이 큽니다!
.vscode 폴더를 만들고 아래의 파일을 프로젝트 루트 경로에 추가해주세요
.vscode/settings.json
{
"eslint.codeAction.showDocumentation": {
"enable": true
},
"eslint.alwaysShowStatus": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll": true
},
}





.png?w=112)