반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 이더리움
- 체당금
- win32
- 당사자표시정정신청서
- php
- as후기
- Python
- 인민공원
- 전자소송
- javascript
- vue
- 홈택스
- Tutorial
- 소액임금체불
- 코로나19
- elasticSearch
- auth
- cartalyst
- Sentinel
- Bootstrap
- Laravel
- Java
- 사업자계좌
- Eclipse
- reactnative
- blockchain
- Blade
- 보정명령
- 코로나
- 개인사업자
Archives
- Today
- Total
그냥 사는 이야기
Vue에서 error: Unexpected console statement (no-console) 본문
반응형
vue-cli
를 연습하는 과정에서 console.log() 를 사용하려고 하는데 아래와 같은 경우가 발생하였습니다.
error: Unexpected console statement (no-console)
어떤 상황인가?
<script>
export default {
...
createdComponent() {
console.log("route", this.$route);
}
...
}
</script>
아래처럼 vue 파일에서 변수값을 살펴보기 위해 console을 프로젝트 내에선 처음 사용해보았는데....
여기에 관해서는 disallow the use of console (no-console)문서에서 보면 기본적으로 console이 허용하지 않는다고 되어 있습니다. 내가 ESLint를 사용 중인것인가? 그냥 문법체크 아닌가? 등등 고민이 있지만 여튼 난 이걸 넘어가야 하므로
임시적으로 허용
/* eslint-disable no-console */
console.log("route", this.$route)
/* eslint-enable no-console */
이렇게 console 앞뒤로 주석을 넣어주면 사용가능하긴 합니다.
하지만 매번 이럴 수는 없습니다.
정책적으로 허용
package.json에서 이것을 제어하는 방법이 있었습니다.
...
"eslintConfig": {
...
"rules": {
"no-console": "off"
},
...
이렇게 한 후 브라우저를 refresh 해줬는데 문제가 계속 발생하였습니다. 그럴 경우는 npm run
을 혹은 yarn
을 다시 재시작하였더니 문제가 해결되었습니다. ESLint 정책글에서 본것처럼 이것은 명백히 의도가 있는 제한이었습니다. 따라서 이것을 조금 더 현명하게 사용하려면 아래처럼 하는 것이 좋을 것 같습니다.
rules: {
// allow console and debugger in development
'no-console': process.env.NODE_ENV === 'production' ? 2 : 0,
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
},
Reference
아래글을 보고 알게 된 것입니다.
Eslint: How to disable “unexpected console statement” in Node.js?
'Development > Web' 카테고리의 다른 글
vue router 기초 (0) | 2020.12.22 |
---|---|
vuejs, vuetify2 에서 polyfill 적용하려면 (0) | 2020.12.11 |
Laravel 5.3 Blog System - Admin Dashboard - Edit, Delete (0) | 2020.01.23 |
Laravel 5.3 Blog System - Admin Dashboard - Create, Store (0) | 2020.01.23 |
Laravel 5.3 Blog System - Admin Dashboard - All Posts (0) | 2020.01.23 |
Comments