-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Code fix should prefer import type
#54255
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
78ba2f2
Code fix should prefer top-level type-only imports
andrewbranch 0ef6c53
Fix errors
andrewbranch 8543f7a
Update message in test
andrewbranch aeda680
Fix fix-all
andrewbranch 9d82739
Merge branch 'main' into convert-type-only-import-improvements
andrewbranch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| /// <reference path="fourslash.ts" /> | ||
|
|
||
| // @module: esnext | ||
| // @verbatimModuleSyntax: true | ||
| // @filename: /b.ts | ||
| ////export interface I {} | ||
| ////export const foo = {}; | ||
|
|
||
| // @filename: /a.ts | ||
| ////import { I, foo } from "./b"; | ||
| ////foo; | ||
| ////export declare const i: I; | ||
|
|
||
| // ^ usage prevents 'Remove unused declaration' fix, | ||
| // so that lack of `index` option asserts only one fix is available. | ||
| // Specifically, we ensure no `Use 'import type'` fix is offered. | ||
|
|
||
| goTo.file("/a.ts"); | ||
| verify.codeFix({ | ||
| description: `Use 'type I'`, | ||
| newFileContent: `import { type I, foo } from "./b"; | ||
| foo; | ||
| export declare const i: I;`, | ||
| }); |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| /// <reference path="fourslash.ts" /> | ||
|
|
||
| // @module: esnext | ||
| // @verbatimModuleSyntax: true | ||
| // @filename: /b.ts | ||
| ////export interface I {} | ||
| ////export const foo = {}; | ||
|
|
||
| // @filename: /a.ts | ||
| //// import { I, type foo } from "./b"; | ||
| //// export declare const x: typeof foo; | ||
|
|
||
| goTo.file("/a.ts"); | ||
| verify.codeFix({ | ||
| index: 0, | ||
| description: ts.Diagnostics.Use_import_type.message, | ||
| newFileContent: `import type { I, foo } from "./b"; | ||
| export declare const x: typeof foo;`, | ||
| }); | ||
|
|
||
| verify.codeFix({ | ||
| index: 1, | ||
| description: `Use 'type I'`, | ||
| newFileContent: `import { type I, type foo } from "./b"; | ||
| export declare const x: typeof foo;`, | ||
| }); |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| /// <reference path="fourslash.ts" /> | ||
|
|
||
| // @module: esnext | ||
| // @verbatimModuleSyntax: true | ||
|
|
||
| // @Filename: /b.ts | ||
| ////export interface I {} | ||
| ////export const foo = {}; | ||
|
|
||
| // @Filename: /c.ts | ||
| //// export interface C {} | ||
|
|
||
| // @Filename: /d.ts | ||
| //// export interface D {} | ||
| //// export function d() {} | ||
|
|
||
| // @Filename: /a.ts | ||
| //// import { I, type foo } from "./b"; | ||
| //// import { C } from "./c"; | ||
| //// import { D, d } from "./d"; | ||
| //// export declare const x: typeof foo; | ||
| //// d(); | ||
|
|
||
| goTo.file("/a.ts"); | ||
| verify.codeFixAll({ | ||
| fixId: "convertToTypeOnlyImport", | ||
| fixAllDescription: ts.Diagnostics.Fix_all_with_type_only_imports.message, | ||
| newFileContent: | ||
| `import type { I, foo } from "./b"; | ||
| import type { C } from "./c"; | ||
| import { type D, d } from "./d"; | ||
| export declare const x: typeof foo; | ||
| d();`, | ||
| }); |
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
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.
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’m not sure if the two fix options should have different
fixNamesThere 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.
Change looks good to me but i don't know about this either.
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.
Asked at the editor sync and this is only used for telemetry, and the telemetry stakeholders don’t care if they have the same name.