Skip to content

Commit a197bf4

Browse files
Adding my vscode to assist others to set up their VS env
1 parent 89a6f97 commit a197bf4

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

dot.vscode/launch.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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: Current File",
9+
"type": "python",
10+
"request": "launch",
11+
"console": "integratedTerminal",
12+
"justMyCode": false,
13+
// "program": "./examples/ex_local.py",
14+
// "program": "./examples/ex_remote.py",
15+
// "program": "./examples/ex_other.py",
16+
// "program": "./tests/test_sync.py",
17+
// "program": "./tests/test_zfslib.py",
18+
"program": "./tests/test_zfslib_online.py",
19+
}
20+
]
21+
}

dot.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"python.envFile": "${workspaceFolder}/dev.env",
3+
"python.linting.pylintEnabled": false,
4+
"python.linting.flake8Enabled": true,
5+
"python.linting.enabled": true
6+
}

0 commit comments

Comments
 (0)