-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add format specifier rules #14
Conversation
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.
LGTM
/review |
1 similar comment
/review |
PR Analysisメインテーマ新しい整数フォーマット指定子ルールとキー値フォーマット指定子カウントルールの追加 PR サマリーこのPRは、 PR タイプ
PR フィードバック:一般的なフィードバックコードの拡張と柔軟性の向上を図るために、新しい整数フォーマット指定子ルールとキー値フォーマット指定子カウントルールの追加は素晴らしい取り組みです。これにより、多言語化プロジェクトの品質管理が向上し、ローカライズされた文字列の一貫性が維持されるでしょう。 コードのフィードバック
セキュリティ上の懸念:no 提案された変更は安全であり、セキュリティ上の懸念はありません。 |
@coderabbitai review |
Actions PerformedReview triggered.
|
ウォークスルーこのアップデートでは、 変更点
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
Actionable comments posted: 4
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (5)
- Sources/L10nLintFramework/Models/EmbeddedRules.swift (2 hunks)
- Sources/L10nLintFramework/Rules/IntegerFormatSpecifierRule.swift (1 hunks)
- Sources/L10nLintFramework/Rules/KeyValueFormatSpecifierCountRule.swift (1 hunks)
- Tests/L10nLintFrameworkTests/Resources/Fixtures/Localizables9/Base.lproj/Localizable.strings (1 hunks)
- Tests/L10nLintFrameworkTests/RulesTests.swift (1 hunks)
Additional comments not posted (4)
Sources/L10nLintFramework/Models/EmbeddedRules.swift (1)
13-14
: 新しいルールが正しくリストに追加されています。Also applies to: 28-29
Sources/L10nLintFramework/Rules/KeyValueFormatSpecifierCountRule.swift (1)
9-44
: キーと値の間でフォーマット指定子の数が一致するかどうかを検証するロジックが適切に実装されています。Tests/L10nLintFrameworkTests/RulesTests.swift (2)
170-182
:IntegerFormatSpecifierRule
のテストが適切に実装されています。
185-199
:KeyValueFormatSpecifierCountRule
のテストが適切に実装されています。
@@ -0,0 +1,10 @@ | |||
"key1_%lld" = "value %lld"; | |||
"key2_%d" = "value %d"; |
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.
%d
の使用は%lld
に置き換える必要があります。
@@ -0,0 +1,10 @@ | |||
"key1_%lld" = "value %lld"; | |||
"key2_%d" = "value %d"; | |||
"key3_%lld" = "value %d"; |
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.
キーと値のフォーマット指定子の数が一致していません。
"key1_%lld" = "value %lld"; | ||
"key2_%d" = "value %d"; | ||
"key3_%lld" = "value %d"; | ||
"key4_%d" = "value %lld"; |
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.
キーと値のフォーマット指定子の数が一致していません。
init() {} | ||
|
||
func validate(baseProject: LocalizedProject, project: LocalizedProject) throws -> [StyleViolation] { | ||
let regex = try NSRegularExpression(pattern: #"^.*(?<specifier>%[0-9]*d).*$"#, options: .anchorsMatchLines) |
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.
正規表現のパターンが%d
のみを検出するように設計されていますが、エスケープされたフォーマット指定子や他のコンテキストで使用されている%d
も誤って検出する可能性があります。
/pragent-review |
/review |
PR Review 🔍
Code feedback:
|
Summary by CodeRabbit
新機能
%lld
を使用するルールを追加しました。テスト