Skip to content

Commit 5e0c472

Browse files
committed
add vscode config
1 parent 9ed5483 commit 5e0c472

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.markdownlint.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"MD013": false
3+
}

.vscode/launch.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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: Django",
9+
"type": "python",
10+
"request": "launch",
11+
"program": "${workspaceFolder}/src/manage.py",
12+
"args": [
13+
"runserver"
14+
],
15+
"django": true,
16+
"justMyCode": true
17+
},
18+
{
19+
"name": "Python: Debug Tests",
20+
"type": "python",
21+
"request": "launch",
22+
"program": "${file}",
23+
"purpose": ["debug-test"],
24+
"console": "integratedTerminal",
25+
"env": {"PYTEST_ADDOPTS": "--no-cov"}
26+
}
27+
]
28+
}

0 commit comments

Comments
 (0)