We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debug 목적으로 console.log를 일부러 남겨둔 경우 현재는 eslint-disable no-console을 이용하여 lint warning을 제거하고 있습니다.
다만 로그를 남길 때 마다 eslint-disable no-console를 추가해야하는 문제가 있어 코드가 깔끔하지 못해지는 문제가 있어 아래와 같은 해결 방안을 검토할 필요가 있습니다.
The text was updated successfully, but these errors were encountered:
첫 번째 방법의 보완책으로, Logger 클래스를 추가하는것은 어떨까요? _Util.es6 파일 안에 포함한다면 아래와 같은 식으로 사용할 수 있을거 같아요.
import { Logger } from '../_Util'; Logger.warn(...);
Sorry, something went wrong.
DavinAhn
No branches or pull requests
Debug 목적으로 console.log를 일부러 남겨둔 경우 현재는 eslint-disable no-console을 이용하여 lint warning을 제거하고 있습니다.
다만 로그를 남길 때 마다 eslint-disable no-console를 추가해야하는 문제가 있어 코드가 깔끔하지 못해지는 문제가 있어 아래와 같은 해결 방안을 검토할 필요가 있습니다.
The text was updated successfully, but these errors were encountered: