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

Commit

Permalink
Specify the location of pylint in the conda containers
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcannon committed Aug 8, 2019
1 parent 0398a98 commit f098e4f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions containers/python-3-anaconda/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Python 3 - Anaconda",
"context": "..",
"dockerFile": "Dockerfile",

// Uncomment the next line if you want to publish any ports.
// "appPort": [],

Expand All @@ -19,7 +19,8 @@
],
"settings": {
"python.pythonPath": "/opt/conda/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.enabled": true
"python.linting.pylintPath": "/opt/conda/bin/pylint"
}
}
}
5 changes: 3 additions & 2 deletions containers/python-3-miniconda/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
],
"settings": {
"python.pythonPath": "/opt/conda/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.enabled": true
"python.linting.pylintPath": "/opt/conda/bin/pylint"
}
}
}

0 comments on commit f098e4f

Please sign in to comment.