-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Use type-only imports in auto-imports when it would be an error not to, and use auto-imports in “implement interface” fix #36615
Use type-only imports in auto-imports when it would be an error not to, and use auto-imports in “implement interface” fix #36615
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.
Some initial comments. I'm still reading importFixes
and helpers
tests/cases/fourslash/codeFixInferFromUsageContextualImport4.ts
Outdated
Show resolved
Hide resolved
tests/cases/fourslash/codeFixClassImplementInterfaceAutoImports2.ts
Outdated
Show resolved
Hide resolved
src/services/codefixes/fixClassDoesntImplementInheritedAbstractMember.ts
Show resolved
Hide resolved
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.
Description of new behavior sounds good to me!
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.
Looks good to me barring a few comments on documentation.
function getImportFixForSymbol(sourceFile: SourceFile, exportInfos: readonly SymbolExportInfo[], moduleSymbol: Symbol, symbolName: string, program: Program, position: number | undefined, preferTypeOnlyImport: boolean, host: LanguageServiceHost, preferences: UserPreferences) { | ||
Debug.assert(exportInfos.some(info => info.moduleSymbol === moduleSymbol), "Some exportInfo should match the specified moduleSymbol"); | ||
// We sort the best codefixes first, so taking `first` is best. | ||
return first(getFixForImport(exportInfos, symbolName, position, preferTypeOnlyImport, program, sourceFile, host, preferences)); |
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.
maybe getFixForImport
should be renamed getImportFix
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.
The names in this file are, at least to me, confusing, repetitive, and unexpressive, but they’re roughly consistent in including an unnecessary “for.” Someday I’d like to do some housekeeping in here, but I think renaming just one function now might not be a useful step forward.
Edit: ignore me, I had bad vscode settings. For any future person, don't do this: "files.associations": {
"*.tsx": "javascript"
} ignore all this@andrewbranch I think I'm gonna be the person to ask for an explicit option again. I keep having I think these are all the relevant options I have set: {
"target": "es2017",
"module": "esnext",
"isolatedModules": true,
"importsNotUsedAsValues": "error",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
} Edit: I'm in hell, now I can't make this behavior go away. I created a new TS project with the default settings of |
importsNotUsedAsValues
is"error"
, an auto-import at a type position will use a type-only import if a regular import would result in an error.Fixes #34995
Fixes #35078 but doesn’t create a new option—I would rather wait and see if anyone is actually asking for an opt-out than start by introducing another option that nobody wants.