-
Notifications
You must be signed in to change notification settings - Fork 8.7k
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
ci: Enforce no unused imports (no-changelog) #6073
Conversation
Great PR! Please pay attention to the following items before merging: Files matching
Files matching
Files matching
Files matching
Make sure to check off this list before asking for review. |
/** | ||
* https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/rules/no-unused-imports.md | ||
*/ | ||
'unused-imports/no-unused-imports': 'error', |
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.
should we make this a warning during development
?
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.
Good idea!
✅ All Cypress E2E specs passed |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #6073 +/- ##
==========================================
- Coverage 18.63% 18.61% -0.02%
==========================================
Files 2584 2584
Lines 116415 116410 -5
Branches 18180 18183 +3
==========================================
- Hits 21689 21673 -16
- Misses 94092 94101 +9
- Partials 634 636 +2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
Looks good, as author I cannot approve though. |
✅ All Cypress E2E specs passed |
* master: fix(core): Serialize dates and regexps when reading from augmented objects (#6086) feat(editor): Enhance Node Creator actions view (#5954) fix(editor): Make the frontend work again when `NODE_FUNCTION_ALLOW_EXTERNAL` is set (no-changelog) (#6058) feat(editor): Add SQL editor support (#5517) refactor(editor): Track advanced filter custom data usage (#6084) refactor(editor): Replace monaco-editor/prismjs with CodeMirror (#5983) ci: Enforce no unused imports (no-changelog) (#6073) # Conflicts: # packages/editor-ui/src/components/ParameterInput.vue # packages/editor-ui/src/stores/nodeTypes.ts
…rce-mapper-ui-P2 * feature/resource-mapping-component: fix(core): Serialize dates and regexps when reading from augmented objects (#6086) feat(editor): Enhance Node Creator actions view (#5954) fix(editor): Make the frontend work again when `NODE_FUNCTION_ALLOW_EXTERNAL` is set (no-changelog) (#6058) feat(editor): Add SQL editor support (#5517) refactor(editor): Track advanced filter custom data usage (#6084) refactor(editor): Replace monaco-editor/prismjs with CodeMirror (#5983) ci: Enforce no unused imports (no-changelog) (#6073) # Conflicts: # packages/editor-ui/src/stores/nodeTypes.ts
Got released with |
Followup to #6060, to address the unused-imports comments in this review.
The combine-imports comments are covered by #6072.