removed .devcontainer, .vscode and workspace

This commit is contained in:
rafa-ruiz 2026-02-23 22:19:20 -08:00
parent e555cffa57
commit f075a0679a
2 changed files with 0 additions and 48 deletions

View File

@ -1,26 +0,0 @@
{
"name": "brunix-assistance-engine",
"dockerComposeFile": "../docker-compose.yaml",
"service": "brunix-engine",
"workspaceFolder": "/workspace",
"remoteUser": "root",
"runArgs": [
"--add-host",
"host.docker.internal:host-gateway"
],
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.debugpy",
"astral-sh.ruff",
"ms-python.black-formatter",
"njpwerner.autodocstring"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python"
}
}
}
}

22
.vscode/settings.json vendored
View File

@ -1,22 +0,0 @@
{
"makefile.configureOnOpen": false,
"python-envs.pythonProjects": [],
"python.terminal.useEnvFile": true,
"python.envFile": "${workspaceFolder}/.env",
"jupyter.logging.level": "info",
"terminal.integrated.env.linux": {
"PYTHONPATH": "${workspaceFolder}:${env:PYTHONPATH}"
},
"python.analysis.ignore": [
"*"
], // Disables Pylance's native linting
"python.analysis.typeCheckingMode": "basic", // Keeps Pylance's type validation
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports.ruff": "explicit"
}
}
}