Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit f098e4f

Browse files
committed
Specify the location of pylint in the conda containers
1 parent 0398a98 commit f098e4f

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

containers/python-3-anaconda/.devcontainer/devcontainer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Python 3 - Anaconda",
33
"context": "..",
44
"dockerFile": "Dockerfile",
5-
5+
66
// Uncomment the next line if you want to publish any ports.
77
// "appPort": [],
88

@@ -19,7 +19,8 @@
1919
],
2020
"settings": {
2121
"python.pythonPath": "/opt/conda/bin/python",
22+
"python.linting.enabled": true,
2223
"python.linting.pylintEnabled": true,
23-
"python.linting.enabled": true
24+
"python.linting.pylintPath": "/opt/conda/bin/pylint"
2425
}
25-
}
26+
}

containers/python-3-miniconda/.devcontainer/devcontainer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
],
2020
"settings": {
2121
"python.pythonPath": "/opt/conda/bin/python",
22+
"python.linting.enabled": true,
2223
"python.linting.pylintEnabled": true,
23-
"python.linting.enabled": true
24+
"python.linting.pylintPath": "/opt/conda/bin/pylint"
2425
}
25-
}
26+
}

0 commit comments

Comments
 (0)