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
airbnb 린트 규칙에 포함된 규칙의 기본 설정 때문에 모든 파일에 대해 devDependencies가 아닌 dependencies 모듈 사용이 강제돼요.
devDependencies
dependencies
이는, 개발 시에만 사용되는 스토리북, 테스트 파일, 컴파일 단계의 설정 파일들에 대해서는 불필요한 것이라 생각돼요.
*.config.{mjs,js,mts,ts}
*.stories.{ts,tsx,js,jsx}
stories/**
*.{test,spec}.{ts,tsx,js,jsx}
The text was updated successfully, but these errors were encountered:
hoqn
Successfully merging a pull request may close this issue.
🔍 이슈 설명
airbnb 린트 규칙에 포함된 규칙의 기본 설정 때문에 모든 파일에 대해
devDependencies
가 아닌dependencies
모듈 사용이 강제돼요.이는, 개발 시에만 사용되는 스토리북, 테스트 파일, 컴파일 단계의 설정 파일들에 대해서는 불필요한 것이라 생각돼요.
✅ 인수 조건
devDependencies
에 있는 모듈 임포트를 허용해야 한다.*.config.{mjs,js,mts,ts}
)*.stories.{ts,tsx,js,jsx}
,stories/**
)*.{test,spec}.{ts,tsx,js,jsx}
)🚜 작업 사항
📌 참고 자료
The text was updated successfully, but these errors were encountered: