인프런 커뮤니티 질문&답변

songhee님의 프로필 이미지
songhee

작성한 질문수

프로젝트로 배우는 Vue.js 3

40 Vue Router 설치하기

40강 vue router문의

작성

·

402

0

안녕하세요 강의 듣고 있는데
eslint문제인지 계속
 
/Users/파일경로/test123/vue3/src/pages/todos/index.vue
1:1 error Component name "index" should always be multi-word vue/multi-word-component-names
 
eslint오류같은데 어떻게 처리해야할까요?
eslint관련된 js파일 추가하라는 얘기가 있어서 다 넣어서 해봐도 해결이 안되어서 다시 롤백해서 하고있는데 어떻게해야할까요 ㅠㅠ?

답변 2

2

안녕하세요. 강의 잘 듣고 있습니다.

저도 위와 같은 에러를 보게 되어서 알려주신대로 추가했는데요, 그랬더니 아래와 같은 에러가 추가적으로 뜹니다. 구글링 해보고 가능한 선에서 모두 수정해보았지만 해결되지 않아 질문 드려요.

Compiled with problems:X

ERROR


C:\Users\vue3-project\src\App.vue
  1:1  error  Parsing error: Unexpected token <

C:\Users\vue3-project\src\components\TodoForm.vue
  1:1  error  Parsing error: Unexpected token <

C:\Users\vue3-project\src\components\TodoList.vue
  1:1  error  Parsing error: Unexpected token <

C:\Users\vue3-project\src\main.js
  2:1  error  Parsing error: The keyword 'import' is reserved

C:\Users\vue3-project\src\pages\index.vue
  1:1  error  Parsing error: Unexpected token <

C:\Users\vue3-project\src\pages\todos\index.vue
  1:1  error  Parsing error: Unexpected token <

저도 같은 오류로 헤맸는데

https://blinders.tistory.com/75

여기서 해결 방법 찾았습니다

 

vue.config.js파일에 다음 값 넣어주면 해결돼요..ㅠㅠ

lintOnSave: false 

-1

코지 코더님의 프로필 이미지
코지 코더
지식공유자

Vue eslint 에러 같은데 최상위 폴더에 .eslintrc.js 파일을 만드시고 (아직 없다면) 이 안에

 

module.exports = {

     rules: {

          'vue/multi-word-component-names': 0,

     }

}

 

 

 

rules 객체 안에 위에처럼 넣어보시겠어요?

 

해보시고 안되면 또 댓글 남겨주세요 ^^

songhee님의 프로필 이미지
songhee

작성한 질문수

질문하기