WEBDEV-8512: Enforce import type for type-only imports#49
Open
jbuckner wants to merge 2 commits into
Open
Conversation
Add @typescript-eslint/consistent-type-imports with the same configuration offshoot adopted in WEBDEV-8471. Rule options: - prefer: 'type-imports' - fixStyle: 'separate-type-imports' - disallowTypeAnnotations: true Plus a one-time autofix + prettier sweep across src/ and demo/. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #49 +/- ##
=======================================
Coverage 78.75% 78.75%
=======================================
Files 16 16
Lines 645 645
Branches 168 168
=======================================
Hits 508 508
Misses 95 95
Partials 42 42 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
@typescript-eslint/consistent-type-importsESLint rule toeslint.config.mjs, matching the configuration offshoot adopted in WEBDEV-8471:prefer: 'type-imports',fixStyle: 'separate-type-imports',disallowTypeAnnotations: true.src/anddemo/— 15 source files touched, purely import reshuffles. No runtime behavior changes.@typescript-eslint/eslint-plugin@^8.46.4is already installed.Test plan
npm run build— clean (tsc + tsc-alias + rsync)npx vitest run— 144/144 tests passnpx eslint src/ demo/— 0 errors from the new rule (11 pre-existingno-explicit-anywarnings unaffected)Ticket: WEBDEV-8512
🤖 Generated with Claude Code