-
-
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
feat: no_support_multi_text_direction #62
Conversation
WalkthroughThe changes primarily introduce a new lint rule Changes
Uplevel your code reviews with CodeRabbit ProCodeRabbit ProIf you like this project, please support us by purchasing the Pro version. The Pro version has advanced context, superior noise reduction and several proprietary improvements compared to the open source version. Moreover, CodeRabbit Pro is free for open source projects. |
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.
Files selected (9)
- packages/nilts/README.md (3)
- packages/nilts/lib/nilts.dart (2)
- packages/nilts/lib/src/change_priority.dart (1)
- packages/nilts/lib/src/lints/no_support_multi_text_direction.dart (1)
- packages/nilts_test/test/lints/defined_void_callback_type.dart (1)
- packages/nilts_test/test/lints/fixed_text_scale_rich_text.dart (1)
- packages/nilts_test/test/lints/no_support_multi_text_direction.dart (1)
- packages/nilts_test/test/lints/shrink_wrapped_scroll_view.dart (1)
- packages/nilts_test/test/lints/unnecessary_rebuilds_from_media_query.dart (1)
Files not summarized due to errors (1)
- packages/nilts/lib/src/lints/no_support_multi_text_direction.dart (diff tokens exceeds limit)
Files not reviewed due to errors (4)
- packages/nilts/lib/src/change_priority.dart (no response)
- packages/nilts/README.md (no response)
- packages/nilts_test/test/lints/shrink_wrapped_scroll_view.dart (no response)
- packages/nilts/lib/src/lints/no_support_multi_text_direction.dart (no response)
Files skipped from review due to trivial changes (3)
- packages/nilts_test/test/lints/defined_void_callback_type.dart
- packages/nilts_test/test/lints/fixed_text_scale_rich_text.dart
- packages/nilts_test/test/lints/unnecessary_rebuilds_from_media_query.dart
Review comments generated (6)
- Review: 3
- LGTM: 3
Tips
Chat with
CodeRabbit Bot (@coderabbitai
)
- Reply on review comments left by this bot to ask follow-up questions. A review comment is a comment on a diff or a file.
- Invite the bot into a review comment chain by tagging
@coderabbitai
in a reply.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
import 'package:flutter/material.dart'; | ||
|
||
class Alignments extends StatelessWidget { | ||
const Alignments({super.key}); |
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.
} | ||
|
||
class Insets extends StatelessWidget { | ||
const Insets({super.key}); |
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.
} | ||
|
||
class Positions extends StatelessWidget { | ||
const Positions({super.key}); |
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.
Overview
New lint rule
no_support_multi_text_direction
and quick fixes.Feature type