Skip to content

Commit 245301f

Browse files
committed
commit vscode settings
1 parent c68a544 commit 245301f

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ typings/
151151

152152

153153
### VisualStudioCode template
154-
.vscode/
155154
.vscode/*
156155
!.vscode/settings.json
157156
!.vscode/tasks.json

.vscode/launch.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python Debugger: Django",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"args": [
12+
"runserver"
13+
],
14+
"django": true,
15+
"autoStartBrowser": false,
16+
"program": "${workspaceFolder}/manage.py"
17+
}
18+
]
19+
}

.vscode/settings.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"[python]": {
3+
"editor.defaultFormatter": "ms-python.black-formatter",
4+
"editor.formatOnSave": true
5+
}
6+
}

0 commit comments

Comments
 (0)