Expected indentation of 1 tab but found 4 spaces.eslint , Parsing error: Unexpected token

llsh·2022년 3월 21일
0

ESLint 세팅 오류

ESLint를 처음 세팅하여 사용중 오류가 발생한것에 대해 정리 하였습니다.

에러 1. expected indentation of 2 spaces but found 4. eslint(indent)

방법 1. eslint-congig-prettier 설치

eslint와 prettier의 충돌로 인해서 생긴 오류라고 합니다!
그래서 .eslintrc.js 파일의 extends 값에 "prettier"을 추가해주면 해결됩니다.

npm install --save-dev eslint-config-prettier
"extends" : ["some-other-config-you-ues","prettier"] 

에러 2. arsing error: Unexpected token

방법 1. "babel-parser" 추가

"parser": "babel-parser"

출처 : [링크텍스트](https://github.com/prettier/eslint-config-prettier 출처: https://interacting.tistory.com/143 [interacting])

profile
기록 기록 기록..

0개의 댓글