mirror of
https://github.com/Paillat-dev/pycord-reactive-views.git
synced 2026-01-02 01:06:18 +00:00
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
|
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
||
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.222.0/containers/python-3-miniconda
|
||
|
|
{
|
||
|
|
"name": "Python Environment",
|
||
|
|
"build": {
|
||
|
|
"dockerfile": "Dockerfile",
|
||
|
|
"context": ".."
|
||
|
|
},
|
||
|
|
"customizations": {
|
||
|
|
"vscode": {
|
||
|
|
"extensions": [
|
||
|
|
"editorconfig.editorconfig",
|
||
|
|
"github.vscode-pull-request-github",
|
||
|
|
"ms-azuretools.vscode-docker",
|
||
|
|
"ms-python.python",
|
||
|
|
"ms-python.vscode-pylance",
|
||
|
|
"ms-python.pylint",
|
||
|
|
"ms-python.isort",
|
||
|
|
"ms-python.flake8",
|
||
|
|
"ms-python.black-formatter",
|
||
|
|
"ms-vsliveshare.vsliveshare",
|
||
|
|
"ryanluker.vscode-coverage-gutters",
|
||
|
|
"bungcip.better-toml",
|
||
|
|
"GitHub.copilot"
|
||
|
|
],
|
||
|
|
"settings": {
|
||
|
|
"python.defaultInterpreterPath": "/usr/local/bin/python",
|
||
|
|
"black-formatter.path": [
|
||
|
|
"/usr/local/py-utils/bin/black"
|
||
|
|
],
|
||
|
|
"pylint.path": [
|
||
|
|
"/usr/local/py-utils/bin/pylint"
|
||
|
|
],
|
||
|
|
"flake8.path": [
|
||
|
|
"/usr/local/py-utils/bin/flake8"
|
||
|
|
],
|
||
|
|
"isort.path": [
|
||
|
|
"/usr/local/py-utils/bin/isort"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"onCreateCommand": "pre-commit install-hooks"
|
||
|
|
}
|