[eslint] The "___" component has been registered but not use vue를 사용할때, 컴포넌트를 import 후 사용하지 않는 컴포넌트에 대해 런타임시 eslint에 의해 에러를 뱉는다.해결방법은 아래와 같다 ./.eslintrc.jsmodule.exports = { /* 생략 */ rules: { /* 생략 */ 'vue/no-unused-components': 'off' }} JavaScript/Vue2 2024.12.23
[ESLint] Parsing error: Unexpected token import ___ export한 module을 import 한 뒤 사용하지 않는 경우 발생하는 런타임 에러이다. 해결방법은 아래와 같다. ./.eslintrc.jsmodule.exports = { /* 생략 */ "parserOptions": { "ecmaVersion": 2015, "sourceType": "module" },} JavaScript/Vue2 2024.12.23
ERROR in [eslint] ___.vue 1:1 error Component name "___" should always be multi-word vue/multi-word-component-names 해결 Vue는 기본적으로 파일명을 파스칼 2개의 단어를 파스칼 케이스로 작명하는게 관례인데, 한 단어로 파일명을 구성할 경우 eslint에서 에러를 발생시킨다. 해결방법은 아래와 같다. ./.eslintrc.jsmodule.exports = { /* 생략 */ rules: { /* 생략 */ 'vue/multi-word-component-names': 'off' }} JavaScript/Vue2 2024.12.23