Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/OWASP/BLT
Browse files Browse the repository at this point in the history
  • Loading branch information
DonnieBLT committed Nov 11, 2023
2 parents c48742a + a3d0160 commit e7bc576
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,31 @@
"dockerComposeFile": "../docker-compose.yml",
"service": "app",
"workspaceFolder": "/blt",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": "/usr/local/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit",
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle",
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle",
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint"
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
"ms-python.python",
"ms-python.vscode-pylance",
"batisteo.vscode-django"
]
}
},
"forwardPorts": [8000]
"forwardPorts": [8000],
"postCreateCommand": "python -m pip install --upgrade pip",
"remoteUser": "vscode"
}

0 comments on commit e7bc576

Please sign in to comment.