-
Notifications
You must be signed in to change notification settings - Fork 3
chore: integrate Prettier into ESLint and optimize CI scope #346
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,26 @@ | ||
| # Dependencies | ||
| node_modules | ||
|
|
||
| # Build outputs | ||
| .next | ||
| out | ||
| build | ||
| dist | ||
|
|
||
| # Generated files | ||
| *.min.js | ||
| *.min.css | ||
| next-env.d.ts | ||
|
|
||
| # Cache | ||
| .cache | ||
| .turbo | ||
|
|
||
| # Coverage | ||
| coverage | ||
|
|
||
| # Vercel | ||
| .vercel | ||
|
|
||
| # Documentation | ||
| 클로드.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: solid-connection/solid-connect-web
Length of output: 682
🏁 Script executed:
Repository: solid-connection/solid-connect-web
Length of output: 1568
ESLint의 Prettier 통합 설정은 올바르며, 하나의 추가 구성이 필요합니다.
현재 ESLint 설정이 완벽하게 구성되어 있습니다만, 다음을 확인해주세요:
ESLint 설정은 정상 —
plugin:prettier/recommended가 올바르게 extends 배열의 끝에 위치하여 충돌하는 규칙을 제대로 덮어씁니다.필수 패키지도 갖춰짐 —
eslint-plugin-prettier,eslint-config-prettier및 각종 플러그인이 devDependencies에 모두 설정되어 있습니다.Prettier 설정 파일이 없음 —
.prettierrc파일이나package.json의 prettier 필드가 없어서 Prettier가 기본값으로만 동작합니다. 프로젝트의 포맷팅 규칙을 커스터마이징하려면 다음 중 하나를 추가하세요:.prettierrc파일 생성 (또는.prettierrc.json,.prettierrc.yaml등)package.json에 prettier 필드 추가🤖 Prompt for AI Agents