-
Notifications
You must be signed in to change notification settings - Fork 13
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
fix: no-unlocalized-strings corrected support for interface prop names #95
Merged
andrii-bodnar
merged 24 commits into
lingui:main
from
swernerx:fix/interface-prop-names-not-strings
Dec 16, 2024
+294
−403
Merged
Changes from 11 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
aaca0de
fix: corrected support for interface prop names
swernerx d8936d4
fix: enhance test suite and fix further issues
swernerx e0619d5
fix: issue in string values in interfaces
swernerx db74820
fix: simplified code
swernerx 7885c93
fix: updated test suite
swernerx 4baebbd
fix: added more tests
swernerx cd4f715
fix: more tests
swernerx 5a69d1b
fix: adding more tests
swernerx f073b13
fix: removed some dead paths
swernerx a4125c7
fix: removed some dead paths
swernerx f1e3a79
fix: cleanups
swernerx 5a3d1f4
refactor: full rework of the test suite
swernerx 61bd580
fix: enhance test suite
swernerx f92da24
feat: added tests for a few gaps
swernerx fc8ed7b
feat: adding more missing tests
swernerx 13e3a87
fix: more tests
swernerx 9ff5968
feat: more test cases for some edge cases
swernerx f5421c6
fix: anothter missing edge case
swernerx 3e0a642
feat: added another test
swernerx 4cc7ed7
fix: more edge case test
swernerx 1fa723e
fix: cleanup a few unused sections
swernerx 642a74e
fix: formatting
swernerx f9f98ff
fix: tweaked for coverage
swernerx e3cfbac
fix: coverage for very edgy edge cases
swernerx 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 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 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
Oops, something went wrong.
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.
Possible the duplication of the cases, we already have these:
I know the test suite for this rule is a bit mess, let's not make it even more messier ) Either delete old duplicating cases, or not add a new ones.
Also i tried to somehow group / sort them, so it's easier to spot group of functionality. Like all variants of prop assignments together. All variants of JSX text together, etc.
Thanks!