microsoft/AI-For-Beginners

Public

mirrored fromhttps://github.com/microsoft/AI-For-BeginnersAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
main

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/devcontainer.json

32lines · modecode

1{
2 "name": "Miniconda (Python 3)",
3 "image": "mcr.microsoft.com/devcontainers/miniconda",
4 "hostRequirements": {
5 "cpus": 2
6 },
7 "customizations": {
8 "vscode": {
9 "settings": {
10 "python.defaultInterpreterPath": "/opt/conda/bin/python",
11 "python.linting.enabled": true,
12 "python.linting.pylintEnabled": true,
13 "python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
14 "python.formatting.blackPath": "/usr/local/py-utils/bin/black",
15 "python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
16 "python.linting.banditPath": "/usr/local/py-utils/bin/bandit",
17 "python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
18 "python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
19 "python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle",
20 "python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle",
21 "python.linting.pylintPath": "/usr/local/py-utils/bin/pylint"
22 },
23 "extensions": [
24 "ms-python.python",
25 "ms-python.vscode-pylance"
26 ]
27 }
28 },
29 "forwardPorts": [],
30 "postCreateCommand": "conda update conda -y && conda env create -f environment.yml",
31 "remoteUser": "vscode"
32}
33