[#162] oxfmt-config 패키지 추가#163
Open
yujeong-jeon wants to merge 3 commits into
Open
Conversation
Contributor
✅ Changeset detectedLatest commit: 386b3f1
If no version change is needed, please add The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Related Issue
Describe your changes
Summary
oxfmt(oxc formatter) 공유 설정을 제공하는
@naverpay/oxfmt-config패키지를 추가합니다.@naverpay/prettier-config·@naverpay/biome-config와 동일한 포매팅 규칙을 제공합니다.Changes
@naverpay/oxfmt-config신규 패키지 추가 —.oxfmtrc.json(4-space,printWidth: 120, single quote,semi: false,trailingComma: all,bracketSpacing: false,arrowParens: always,endOfLine: lf). 값은oxfmt --migrate prettier가@naverpay/prettier-config로부터 생성하는 결과와 동일.extends키가 없어(oxc#16394 결론),oxfmt.config.ts에서import config from '@naverpay/oxfmt-config' with {type: 'json'}로 사용하는 방식 채택.@naverpay/code-style-cli: oxfmt 항목을@naverpay/oxfmt-config설치 +oxfmt.config.tsscaffold 방식으로 변경.README.md/CLAUDE.md패키지 목록에 추가.@naverpay/code-style-clipatch).Note
@naverpay/oxfmt-config@0.0.1은 첫 배포라 OIDC(trusted publishing)가 없어 패스키 사용 가능한 환경에서 로컬 수동 배포 예정 (현재 미배포). 그래서 changeset 에는code-style-cli만 포함했습니다.