프론트엔드 개발/React

React) .eslintrc.js 에 Unexpected token ':' 에러 해결하기

Ella Seon 2022. 12. 9. 00:10

0. 에러의 원인

- 팀원들과 협업하기 위해 prettier 와 eslint를 설정하고 있었다.

- .eslintrc.js   아래와 같이 설정하였지만 빨간줄이 그어지면서 에러가났다.

 

- 문법적인 문제일까? 하고 봤는데...

에러메세지 : ';'이(가) 필요합니다.

 

json 데이터 형식을 무슨...

: 가 아니라 ; 로 바꾸라는 것이다. 나한테 왜그러니 대체....

 

1. 해결방법

- .eslintrc.js 파일은 config를 export 해줘야 한다. 이건 자바스크립트 파일이기 떄문이다. json 파일일경우에는 export를 안해줘도 된다. 

객체 앞에 module.exports =      를 붙이면 해결이된다!!!

 

 

 

 

 

 

 

 

출처 : https://github.com/AtomLinter/linter-eslint/issues/470

 

Error: Unexpected token : in .eslintrc.js · Issue #470 · AtomLinter/linter-eslint

Hello guys, ESlint version: v2.3.0 Node: 4.1.2 No matter what I put inside my .eslintrc.js locally in my project folder I get this error: Error: Unexpected token : SyntaxError: Cannot read config f...

github.com