Skip to content

Commit c5f0d8a

Browse files
Add vscode configuration.
1 parent 49b6219 commit c5f0d8a

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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": "Debug oneWaySync",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "one_way_sync.py",
12+
"console": "integratedTerminal",
13+
"justMyCode": false,
14+
"cwd": "${workspaceFolder}/source/",
15+
"env": {"http_proxy":"", "https_proxy": ""},
16+
}
17+
]
18+
}

.vscode/settings.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"python.testing.pytestArgs": [
3+
"test"
4+
],
5+
"python.testing.unittestEnabled": false,
6+
"python.testing.pytestEnabled": true,
7+
"debugpy.debugJustMyCode": false,
8+
"flake8.args": [
9+
"--ignore=E261",
10+
"--max-line-length=120",
11+
]
12+
}

0 commit comments

Comments
 (0)