Expected indentation of 1 tab but found 4 spaces.eslint , Parsing error: Unexpected token
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])
Author And Source
이 문제에 관하여(Expected indentation of 1 tab but found 4 spaces.eslint , Parsing error: Unexpected token), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@lsh__97/Expected-indentation-of-1-tab-but-found-4-spaces.eslint-Parsing-error-Unexpected-token저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)