StringsLint
StringsLint copied to clipboard
📱Ensure your localized strings are complete and never unused 👍
Hi there, do you have any plans to support the new [String Catalogs](https://developer.apple.com/documentation/Xcode/localizing-and-varying-text-with-a-string-catalog) in future?
Strings with same-line comments appear to produce false missing violations `Partial Violation: Localized string "my_string" is missing in locale "ja" (partial)` **en/Localizable.strings** ``` "my_string" = "Foo bar..."; ``` **ja/Localizable.strings** ```...
`NSLocalizedString` seems a little cumbersome for me to use since I don't include a comment with my strings. So I have a wrapper function, like so: ```swift public func localeString(_...
*R.swift* exposes strings (and other resources) a static resource. Right now it's usage does not count inside StringsLint but it should. I don't have experience with that library but if...
StringsLint needs to parse all files inside a project and it can take a while to do it. Having it running inside a `Run Build Script` could not be viable...