반응형
1. Create React App에서 사용하는 ESLint 구성 패키지를 추가
yarn add eslint-config-react-app -D
2. package.json의 extends에서 react-app를 삭제하는 방법도 사용하는 것 같다.
"extends": [
"react-app"
]
},
3.package.json 파일 저장
package.json 파일을 열고 Ctrl+s로 저장한다.
4. eslint-config-react-app 버전 6으로 다운그레이드
설치한 eslint-config-react-app의 버전을 6으로 다운그레이드한다.
// 현재 설치된 버전 삭제
yarn remove eslint-config-react-app
// version 6으로 설치
yarn add eslint-config-react-app@6
반응형
'React' 카테고리의 다른 글
Module not found: Error: Can't resolve 'react-router-dom' in (0) | 2023.07.17 |
---|---|
AG Grid: could not find matching row model for rowModelType clientSide (0) | 2023.07.17 |
AgGridReact rowData No overload matches this call. Error (0) | 2023.07.17 |
@ag-grid-community/react (0) | 2023.07.17 |
cannot find module 'ag-grid-react' or its corresponding type declarations (0) | 2023.07.17 |