[error] eslint 설치

강원지·2022년 9월 28일
0

(ง •_•)ง error

목록 보기
1/4

eslint 설치 후 module에 prettier에 의해 빨간 줄 뜸

module.exports = {
  env: {
    browser: true,
    es2021: true,
  },
  extends: ["eslint:recommended", "plugin:react/recommended"],
  overrides: [],
  parserOptions: {
    ecmaVersion: "latest",
    sourceType: "module",
  },
  plugins: ["react"],
  rules: {},
};

env에 node:true를 추가해줬으나(localhost로 실행 중이면 종료 후 다시 실행해줘야 함)
여전히 다음 에러가 뜸

Error: Unexpected token 'export'
ESLint가 ES6 ~ 7을 파싱할 때 문제가 발생한다고 함

barbel-eslint를 설치해 문제를 해결함

npm install babel-eslint --save-dev

도움

0개의 댓글