ESLint 적용 시 에러 모음

dev.teon·2023년 10월 31일
0

1) vscode 상에서 파싱 나는 파싱 오류
→ .eslintrc.js 설정 후 vscode 껐다 키면 됨.

참고 https://ojm1484.tistory.com/27

2)
error Component name "Content" should always be multi-word vue/multi-word-component-names
→ .eslintrc.js 파일 없어서 나는 오류

module.exports = {
    root: true,
    env: {
      node: true,
    },
    extends: [
      "plugin:vue/vue3-essential",
      "eslint:recommended",
    ],
    parserOptions: {
      parser: "@babel/eslint-parser",
      requireConfigFile: false,
    },
    // rules: { //Product에 배포되어야 하지 않을 코드들 사전 방지 규칙
    //   "no-console": "warn",//console.log 사용 시 경고
    //   "no-unused-vars": "warn",//할당되지 않은 변수 있을 시 경고
    // },
  }

ESLint 규칙 공식 문서→
Rules Reference - ESLint - Pluggable JavaScript Linter

Parsing error 참고 →
Parsing error: No Babel config file detected... 에러문의드리겠습니다 - 인프런 | 질문 & 답변

ESLint 오류 고친 결정적 도움 된 블로그 →
[Vue.js] EsLint 오류 잡아보기

0개의 댓글