Skip to content

Commit

Permalink
Replace devcontainer definition (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored May 13, 2024
1 parent 728aff1 commit dcb3e0e
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 37 deletions.
41 changes: 41 additions & 0 deletions .devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "pycognito dev",
"image": "mcr.microsoft.com/vscode/devcontainers/python:0-3.8",
"postStartCommand": "python3 -m pip install -e .",
"postCreateCommand": "python3 -m pip install -r requirements_test.txt tox",
"containerUser": "vscode",
"containerEnv": {
"GIT_EDITOR": "code --wait"
},
"customizations": {
"vscode": {
"extensions": [
"esbenp.prettier-vscode",
"ms-python.python",
"ms-python.vscode-pylance",
"visualstudioexptteam.vscodeintellicode"
],
"settings": {
"python.pythonPath": "/usr/local/bin/python",
"python.formatting.provider": "black",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
88
],
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.organizeImports": "always"
},
"files.trimTrailingWhitespace": true,
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/usr/bin/zsh"
}
},
"terminal.integrated.defaultProfile.linux": "zsh"
}
}
}
}
12 changes: 0 additions & 12 deletions .devcontainer/Dockerfile

This file was deleted.

25 changes: 0 additions & 25 deletions .devcontainer/devcontainer.json

This file was deleted.

0 comments on commit dcb3e0e

Please sign in to comment.