본문 바로가기

[Dev] 🎯Self Study

[Eslint 에러 해결]

React app에서 eslint를 사용하려는데 빨간줄이 마구마구 떴다.

그걸 해결하는 방법은

 

eslint에 가서,

module.exports = {
  extends: ['airbnb-base'],
  rules: {
    'linebreak-style': 0,
    'no-console': 'off',
  },
};

module.exports = {
  extends: [
    'plugin:@typescript-eslint/eslint-recommended',
    'plugin:@typescript-eslint/recommended',
  ],
  parser: '@typescript-eslint/parser',
  plugins: ['@typescript-eslint'],
  overrides: [
    {
      files: ['*.js', '*.jsx'],
      rules: {
        '@typescript-eslint/explicit-function-return-type': 'off',
      },
    },
  ],
};

이렇게 추가해준다.

 

터미널에서 추가

npm i typescript eslint parser

 

[ESLint] Parsing error: Unexpected token (tistory.com)

 

[ESLint] Parsing error: Unexpected token

ESLint를 돌리는데 Parsing error: Unexpected token 라는 에러가 계속 떴습니다. 알아보니 ESLint의 기본 parser는 Espree로, 기본적으로 ECMA 버전이 5로 설정되어있기 때문에 그 이후 문법이나 Typescript 문법은 pa

r4bb1t.tistory.com