-
Notifications
You must be signed in to change notification settings - Fork 508
Techdebt: add ESLint rules to prepare for Vue 3 migration #9457
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
Techdebt: add ESLint rules to prepare for Vue 3 migration #9457
Conversation
| :fill-color="'#FFCC00'" /> | ||
| <template #icon> | ||
| <Star v-if="item.isFavorite" :size="20" /> | ||
| <Star v-else :size="20" :fill-color="'#FFCC00'" /> |
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.
| <Star v-else :size="20" :fill-color="'#FFCC00'" /> | |
| <Star v-else :size="20" fill-color="#FFCC00" /> |
😊
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 wanted to have this commit plain, having only one lint rule fix, related to the migration.
For this thing we can add a new rule with the auto fix.
|
Actually, it is ready to merge. Should we do it before the release? |
Signed-off-by: Grigorii K. Shartsev <[email protected]>
Signed-off-by: Grigorii K. Shartsev <[email protected]>
Signed-off-by: Grigorii K. Shartsev <[email protected]>
Signed-off-by: Grigorii K. Shartsev <[email protected]>
681d585 to
12242f9
Compare
Signed-off-by: Grigorii K. Shartsev <[email protected]>
|
Rebased onto master, added a fix for tests |
Signed-off-by: Grigorii K. Shartsev <[email protected]>
Antreesy
left a comment
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.
Seems good by me!
| <NcButton slot="trigger" | ||
| v-tooltip.bottom="t('spreed', 'Create a new group 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.
Note: slot="trigger" is just removed here. This button is not passed to any of the component's slots.
☑️ Resolves
Add ESLint rules for deprecated things from Vue 2.6 and using Vue 3 things available in Vue 2.7
Fix all errors.
🖼️ Screenshots
No changes