[eslint] typescript + React 환경에서, 'React' was used before it was defined 오류 해결방법
Software/development | 2021. 5. 8. 22:24
eslint에 typescript + react 설정을 해놨을 때 import React from 'react' 이 부분에 오류가 나옵니다
@typescript-eslint 쓸 때 발생하는건데, 해결방법만 짧게 설명하면 .eslintrc에 아래 내용을 추가해주면 됩니다
"rules": {
// note you must disable the base rule as it can report incorrect errors
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": ["error"]
}
자세한 백그라운드를 원하시면 아래 링크들을 확인하세요
- stackoverflow.com/questions/63818415/react-was-used-before-it-was-defined
- github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-use-before-define.md
반응형
'Software > development' 카테고리의 다른 글
[vscode] C standard 설정 방법 (0) | 2021.09.16 |
---|---|
[JetBrains] parameter hint 보는 단축키 (0) | 2021.09.09 |
vim에서 ^M 지우는 방법 (0) | 2021.04.30 |
Tabnine vim에서 사용하는 방법 (4) | 2021.04.13 |
[VSCode] Mac에서 vscode C++ 개발환경 구축 (17) | 2021.03.20 |