-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
fix: resolve lint command error #26
Conversation
61c3ea7
to
61d8f05
Compare
@@ -23,39 +23,41 @@ | |||
"react-router-dom": "^6.27.0" | |||
}, | |||
"devDependencies": { | |||
"@types/eslint__js": "^8.42.3", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ESLint가 버전업 되면서 이것저것 쫌 많이 바뀌어서 저도 공부 좀 해야겠습니다 🥲
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- bun update 명령을 실행할 때 패키지 순서가 바뀌네요..
- bun update는 일전에 bun update 덕분에 minor, patch 업데이트가 되어서 버그가 해결된 적 있어서 종종 사용하고 있습니다.
/** | ||
* NOTE: Might not work properly with ESLINT version 9 | ||
* @see https://github.com/storybookjs/eslint-plugin-storybook/issues/157 | ||
*/ | ||
storybook: storybookPlugin, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
좀 더 보충 설명하자면, 해당 storybookPlugin의 특정 룰이 작동하는지 확인하려고 했더니, 이 에러가 발생했는데요. 이 문서에 따르면 이 에러는 해당 플러그인이 최신 Eslint의 명세 변경사항을 반영하지 않았기 때문이라고 합니다...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
린트 문제가 더 이상 발생하지 않는 것을 확인하였습니다.
No description provided.