[#162] oxfmt-config 패키지 추가#163
Merged
Merged
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
|
Contributor
Author
|
서비스에 정식 버전으로 반영할게요옹 |
arale-dev
reviewed
Jul 1, 2026
Comment on lines
-29
to
+31
| one of the three modes above. Note the catalog also offers `oxfmt` (a formatter config scaffold) | ||
| even though there is no `@naverpay/oxfmt` package — `TOOLS` entries are not limited to this repo's | ||
| packages. | ||
| one of the three modes above. `TOOLS` entries are not limited to this repo's packages — `packages` | ||
| may list any npm package (e.g. an entry can install a third-party tool alongside a `@naverpay/*` | ||
| config). |
Contributor
Author
There was a problem hiding this comment.
https://github.com/NaverPayDev/code-style/tree/main/packages/code-style-cli 요기 말씀이시져? 아 이전으로 작성되어 있는거 확인하여 변경하겠습니다!
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만 포함했습니다.