반응형
에러 >>
ESLint: Plugin "react" was conflicted between "" and ""
원인>>
ESLint 설정 내 플러그인 간 충돌
해결 >>
eslint 설정 파일에서 root: true
"root": true,
참고>>
ESLint then searches up the directory structure, merging any .eslintrc files it finds along the way until reaching either a .eslintrc file with root: true or the root directory.
root: true로 설정된 eslintrc를 루트로 인식하여 더이상 타고 올라가서 다른 eslintrc를 찾지 않음 -> 충돌 안 남
https://gitmemory.com/issue/microsoft/vscode-eslint/1079/700645942
728x90
반응형
'개발' 카테고리의 다른 글
[Error] Next.js + typescript vsc eslint error (0) | 2021.09.14 |
---|---|
[not working] Next.js live reload (0) | 2021.09.14 |
[Error] 'React' must be in scope when using JSX (0) | 2021.09.07 |