Skip to content

Commit 2c088a8

Browse files
committed
Updated development dependencies
1 parent 17e90c3 commit 2c088a8

File tree

3 files changed

+20
-16
lines changed

3 files changed

+20
-16
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rofrano/nyu-devops-base:su23
1+
FROM rofrano/nyu-devops-base:fa23
22

33
# Add Python package requiremnets to the dev environment
44
WORKDIR /app

.devcontainer/devcontainer.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,27 @@
77
"remoteUser": "vscode",
88
"customizations": {
99
"vscode": {
10+
"settings": {
11+
"[python]": {
12+
"editor.defaultFormatter": "ms-python.black-formatter",
13+
"editor.formatOnSave": true
14+
},
15+
"python.linting.enabled": true,
16+
"python.linting.pylintEnabled": true,
17+
"markdown-preview-github-styles.colorTheme": "light",
18+
"files.exclude": {
19+
"**/.git": true,
20+
"**/.DS_Store": true,
21+
"**/*.pyc": true,
22+
"**/__pycache__": true,
23+
"**/.pytest_cache": true
24+
}
25+
},
1026
"extensions": [
1127
"VisualStudioExptTeam.vscodeintellicode",
1228
"ms-python.python",
1329
"ms-python.pylint",
1430
"ms-python.vscode-pylance",
15-
"alexkrechik.cucumberautocomplete",
1631
"cstrap.flask-snippets",
1732
"yzhang.markdown-all-in-one",
1833
"bierner.github-markdown-preview",
@@ -31,7 +46,7 @@
3146
"bbenoist.vagrant"
3247
]
3348
}
34-
},
49+
}
3550
//"forwardPorts": [8000],
3651
// "postCreateCommand": ""
3752
}

.vscode/settings.json

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,13 @@
33
"makefile.extensionOutputFolder": "./.vscode",
44
"git.mergeEditor": true,
55
"python.pythonPath": "/usr/local/bin/python",
6-
"python.linting.enabled": true,
7-
"python.linting.pylintEnabled": true,
8-
"python.testing.pytestEnabled": false,
6+
"python.testing.pytestEnabled": true,
97
"python.testing.unittestEnabled": true,
108
"python.testing.unittestArgs": [
119
"-v",
1210
"-s",
1311
"./tests",
1412
"-p",
1513
"test*.py"
16-
],
17-
"files.exclude": {
18-
"**/.git": true,
19-
"**/.svn": true,
20-
"**/.hg": true,
21-
"**/CVS": true,
22-
"**/.DS_Store": true,
23-
"**/*.pyc": true,
24-
"**/__pycache__": true
25-
}
14+
]
2615
}

0 commit comments

Comments
 (0)