File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/vs/platform/externalTerminal/node Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -515,7 +515,6 @@ export default tseslint.config(
515515 'src/vs/platform/extensions/common/extensionValidator.ts' ,
516516 'src/vs/platform/extensions/common/extensions.ts' ,
517517 'src/vs/platform/extensions/electron-main/extensionHostStarter.ts' ,
518- 'src/vs/platform/externalTerminal/node/externalTerminalService.ts' ,
519518 'src/vs/platform/instantiation/common/descriptors.ts' ,
520519 'src/vs/platform/instantiation/common/extensions.ts' ,
521520 'src/vs/platform/instantiation/common/instantiation.ts' ,
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ export class WindowsExternalTerminalService extends ExternalTerminalService impl
8989 // delete environment variables that have a null value
9090 Object . keys ( env ) . filter ( v => env [ v ] === null ) . forEach ( key => delete env [ key ] ) ;
9191
92- const options : any = {
92+ const options = {
9393 cwd : dir ,
9494 env : env ,
9595 windowsVerbatimArguments : true
@@ -267,7 +267,7 @@ export class LinuxExternalTerminalService extends ExternalTerminalService implem
267267 // delete environment variables that have a null value
268268 Object . keys ( env ) . filter ( v => env [ v ] === null ) . forEach ( key => delete env [ key ] ) ;
269269
270- const options : any = {
270+ const options = {
271271 cwd : dir ,
272272 env : env
273273 } ;
You can’t perform that action at this time.
0 commit comments