Skip to content

Commit c818808

Browse files
fix lint
1 parent 8e4a9d9 commit c818808

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function buildDjangoLaunchDebugConfiguration(
3131
program: program || defaultProgram,
3232
args: ['runserver'],
3333
django: true,
34-
autoStartBrowser: false
34+
autoStartBrowser: false,
3535
};
3636
if (!program) {
3737
const selectedProgram = await input.showInputBox({

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export async function buildFlaskLaunchDebugConfiguration(
3232
},
3333
args: ['run', '--no-debugger', '--no-reload'],
3434
jinja: true,
35-
autoStartBrowser: false
35+
autoStartBrowser: false,
3636
};
3737

3838
if (!application) {

src/test/unittest/configuration/providers/djangoLaunch.unit.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,7 @@ suite('Debugging - Configuration Provider Django', () => {
109109
program: 'hello',
110110
args: ['runserver'],
111111
django: true,
112-
autoStartBrowser: false
113-
112+
autoStartBrowser: false,
114113
};
115114

116115
expect(state.config).to.be.deep.equal(config);
@@ -131,7 +130,7 @@ suite('Debugging - Configuration Provider Django', () => {
131130
program: defaultProgram,
132131
args: ['runserver'],
133132
django: true,
134-
autoStartBrowser: false
133+
autoStartBrowser: false,
135134
};
136135

137136
expect(state.config).to.be.deep.equal(config);

src/test/unittest/configuration/providers/flaskLaunch.unit.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ suite('Debugging - Configuration Provider Flask', () => {
5858
},
5959
args: ['run', '--no-debugger', '--no-reload'],
6060
jinja: true,
61-
autoStartBrowser: false
61+
autoStartBrowser: false,
6262
};
6363

6464
expect(state.config).to.be.deep.equal(config);
@@ -82,7 +82,7 @@ suite('Debugging - Configuration Provider Flask', () => {
8282
},
8383
args: ['run', '--no-debugger', '--no-reload'],
8484
jinja: true,
85-
autoStartBrowser: false
85+
autoStartBrowser: false,
8686
};
8787

8888
expect(state.config).to.be.deep.equal(config);
@@ -105,7 +105,7 @@ suite('Debugging - Configuration Provider Flask', () => {
105105
},
106106
args: ['run', '--no-debugger', '--no-reload'],
107107
jinja: true,
108-
autoStartBrowser: false
108+
autoStartBrowser: false,
109109
};
110110

111111
expect(state.config).to.be.deep.equal(config);

0 commit comments

Comments
 (0)