-
Notifications
You must be signed in to change notification settings - Fork 1
TINY-12656: Add new custom rule to enforce type location #55
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
base: main
Are you sure you want to change the base?
Conversation
| */ | ||
| const isTypeDeclaration = (node: TSESTree.Node): boolean => { | ||
| if (TYPE_DECLARATION_NODE_TYPES.includes(node.type)) { | ||
| return true; |
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.
As the AI points out on your tinymce PR, TypeScript is not this simple. We do some weird things in our codebases.
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.
I have updated based on the coderabbits suggestion to skip stories.tsx files.
All other comments weren't related to types not being moved correctly.
I believe everything has been resolved correctly now
Related Ticket: TINY-12656
Description of Changes:
Pre-checks: