add binary paths to devcontainer.json

Former-commit-id: a323f3161d6ea326b0215d5ed5ebbadae0f38597
This commit is contained in:
Arthur Lu 2022-02-20 22:53:11 +00:00
parent 0cace3cec3
commit 21d92e65b2

View File

@ -5,11 +5,11 @@
}, },
"settings": { "settings": {
"terminal.integrated.shell.linux": "/bin/bash", "terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": "", "python.pythonPath": "/usr/local/bin/python",
"python.linting.enabled": true, "python.linting.enabled": true,
"python.linting.pylintEnabled": true, "python.linting.pylintEnabled": true,
"python.linting.pylintPath": "", "python.linting.pylintPath": "/usr/local/bin/pylint",
"python.testing.pytestPath": "", "python.testing.pytestPath": "/usr/local/bin/pytest",
"editor.tabSize": 4, "editor.tabSize": 4,
"editor.insertSpaces": false "editor.insertSpaces": false
}, },