Skip to content

Commit c3efd6d

Browse files
Remove default justMyCode (#100)
1 parent 97797f5 commit c3efd6d

19 files changed

+0
-30
lines changed

src/extension/debugger/configuration/dynamicdebugConfigurationService.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
2727
type: DebuggerTypeName,
2828
request: 'launch',
2929
program: '${file}',
30-
justMyCode: true,
3130
});
3231

3332
const djangoManagePath = await DynamicPythonDebugConfigurationService.getDjangoPath(folder);
@@ -39,7 +38,6 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
3938
program: `${workspaceFolderToken}${path.sep}${djangoManagePath}`,
4039
args: ['runserver'],
4140
django: true,
42-
justMyCode: true,
4341
});
4442
}
4543

@@ -56,7 +54,6 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
5654
},
5755
args: ['run', '--no-debugger', '--no-reload'],
5856
jinja: true,
59-
justMyCode: true,
6057
});
6158
}
6259

@@ -70,7 +67,6 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
7067
module: 'uvicorn',
7168
args: [`${fastApiPath}:app`, '--reload'],
7269
jinja: true,
73-
justMyCode: true,
7470
});
7571
}
7672

src/extension/debugger/configuration/providers/djangoLaunch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ export async function buildDjangoLaunchDebugConfiguration(
3131
program: program || defaultProgram,
3232
args: ['runserver'],
3333
django: true,
34-
justMyCode: true,
3534
};
3635
if (!program) {
3736
const selectedProgram = await input.showInputBox({

src/extension/debugger/configuration/providers/fastapiLaunch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export async function buildFastAPILaunchDebugConfiguration(
2727
module: 'uvicorn',
2828
args: ['main:app', '--reload'],
2929
jinja: true,
30-
justMyCode: true,
3130
};
3231

3332
if (!application) {

src/extension/debugger/configuration/providers/fileLaunch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export async function buildFileLaunchDebugConfiguration(
2121
request: 'launch',
2222
program: '${file}',
2323
console: 'integratedTerminal',
24-
justMyCode: true,
2524
};
2625
sendTelemetryEvent(EventName.DEBUGGER_CONFIGURATION_PROMPTS, undefined, {
2726
configurationType: DebugConfigurationType.launchFastAPI,

src/extension/debugger/configuration/providers/fileLaunchWithArgs.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export async function buildFileWithArgsLaunchDebugConfiguration(
2222
program: '${file}',
2323
console: 'integratedTerminal',
2424
args: '${command:pickArgs}',
25-
justMyCode: true,
2625
};
2726
sendTelemetryEvent(EventName.DEBUGGER_CONFIGURATION_PROMPTS, undefined, {
2827
configurationType: DebugConfigurationType.launchFileWithArgs,

src/extension/debugger/configuration/providers/flaskLaunch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export async function buildFlaskLaunchDebugConfiguration(
3232
},
3333
args: ['run', '--no-debugger', '--no-reload'],
3434
jinja: true,
35-
justMyCode: true,
3635
};
3736

3837
if (!application) {

src/extension/debugger/configuration/providers/moduleLaunch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export async function buildModuleLaunchConfiguration(
2121
type: DebuggerTypeName,
2222
request: 'launch',
2323
module: DebugConfigStrings.module.snippet.default,
24-
justMyCode: true,
2524
};
2625
const selectedModule = await input.showInputBox({
2726
title: DebugConfigStrings.module.enterModule.title,

src/extension/debugger/configuration/providers/pidAttach.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ export async function buildPidAttachConfiguration(
2020
type: DebuggerTypeName,
2121
request: 'attach',
2222
processId: '${command:pickProcess}',
23-
justMyCode: true,
2423
};
2524
sendTelemetryEvent(EventName.DEBUGGER_CONFIGURATION_PROMPTS, undefined, {
2625
configurationType: DebugConfigurationType.pidAttach,

src/extension/debugger/configuration/providers/pyramidLaunch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export async function buildPyramidLaunchConfiguration(
3333
args: [iniPath || defaultIni],
3434
pyramid: true,
3535
jinja: true,
36-
justMyCode: true,
3736
};
3837

3938
if (!iniPath) {

src/extension/debugger/configuration/providers/remoteAttach.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export async function buildRemoteAttachConfiguration(
3333
remoteRoot: '.',
3434
},
3535
],
36-
justMyCode: true,
3736
};
3837

3938
const connect = config.connect!;

0 commit comments

Comments
 (0)