728x90
반응형
Vue는 기본적으로 파일명을 파스칼 2개의 단어를 파스칼 케이스로 작명하는게 관례인데, 한 단어로 파일명을 구성할 경우 eslint에서 에러를 발생시킨다.
해결방법은 아래와 같다.
./.eslintrc.js
module.exports = {
/* 생략 */
rules: {
/* 생략 */
'vue/multi-word-component-names': 'off'
}
}
728x90
반응형
'JavaScript > Vue2' 카테고리의 다른 글
Error in [eslint] '_' is defined but never used (vue/no-used-vars) (0) | 2024.12.24 |
---|---|
[eslint] The "___" component has been registered but not use (0) | 2024.12.23 |
[ESLint] Parsing error: Unexpected token import ___ (0) | 2024.12.23 |