-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Cleanup code / reenable eslint overwrite for src/legacy/core_plugins/kibana
#54222
Cleanup code / reenable eslint overwrite for src/legacy/core_plugins/kibana
#54222
Conversation
Pinging @elastic/kibana-app (Team:KibanaApp) |
…-07-remove-src-legacy-core-plugins-kibana-eslint-overwrite
…-07-remove-src-legacy-core-plugins-kibana-eslint-overwrite
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 like a small failure - good to ship once build is green
id: selectedIndexPattern.id, | ||
title: selectedIndexPattern.attributes!.title, | ||
id: selectedId, | ||
title: attributes ? attributes.title : '', |
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.
Just some code golf: ⛳️
title: attributes ? attributes.title : '', | |
title: attributes?.title || '', |
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.
Hole in one! 🏌 ! Many thx for the comment + review!
💚 Build SucceededHistory
To update your PR or re-run it, just comment with: |
…4222) * Cleanup code * Remove eslint overwrite
* master: Remove eslint overwrite for src/legacy/core_plugins/kibana (elastic#54222)
* master: Remove eslint overwrite for src/legacy/core_plugins/kibana (elastic#54222)
Summary
Fix eslint complains and re-enable eslint rules for
src/legacy/core_plugins/kibana
Fixes #49547
Checklist
Use
strikethroughsto remove checklist items you don't feel are applicable to this PR.- [ ] This was checked for cross-browser compatibility, including a check against IE11- [ ] Any text added follows EUI's writing guidelines, uses sentence case text and includes i18n support- [ ] Documentation was added for features that require explanation or tutorials- [ ] Unit or functional tests were updated or added to match the most common scenarios- [ ] This was checked for keyboard-only and screenreader accessibilityFor maintainers
- [ ] This was checked for breaking API changes and was labeled appropriately- [ ] This includes a feature addition or change that requires a release note and was labeled appropriately