File tree 3 files changed +25
-1
lines changed
3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,6 @@ typings/
151
151
152
152
153
153
# ## VisualStudioCode template
154
- .vscode /
155
154
.vscode /*
156
155
! .vscode /settings.json
157
156
! .vscode /tasks.json
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "[python]" : {
3
+ "editor.defaultFormatter" : " ms-python.black-formatter" ,
4
+ "editor.formatOnSave" : true
5
+ }
6
+ }
You can’t perform that action at this time.
0 commit comments