eslint should be listed in the project's dependencies. #19
5wintaek
started this conversation in
Show and tell
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
문제점
'react-daum-postcode' should be listed in the project's dependencies. Run 'npm i -S react-daum-postcode' to add it.
이라는 eslint 오류 발견패키지가 프로젝트의 종속성 목록에 포함되어 있지 않아서 발생하는 문제점이다.
하지만 사진과 같이 종속성 목록에 포함이 되어있는데도 eslint 오류가 뜨는 모습
해결방법
(1) 오류에 나와있는
npm i -S react-daum-postcode
라는 명렁어를 실행하여 종속성 목록에 추가를 했다.여기서 S란 패키지를 설치하고 종속성으로 추가하는 방법이다. 하지만 해결되지 않았다.
(2)
eslintrc.json
에서 오류를 직접 끄는 방법이다."import/no-extraneous-dependencies": [ "error", { "packageDir": "./" } ],
부분에서 error -> off로 끄는 방법을 선택하였다. 하지만 직접적인 원인 방법을 해결하지 못해서 글을 남긴다.Beta Was this translation helpful? Give feedback.
All reactions