die Order nicht gefunden. -> behoben - IMP: "einfachere" Debug Möglichkeit mit odoo-18-dev container. README.md in .vscode hinzugefügt.
31 lines
680 B
JSON
31 lines
680 B
JSON
{
|
|
"python.pythonPath": "/usr/bin/python3",
|
|
"python.analysis.extraPaths": [
|
|
"${workspaceFolder}",
|
|
"${workspaceFolder}/../../odoo-source/odoo"
|
|
],
|
|
"python.analysis.typeCheckingMode": "off"
|
|
}
|
|
{
|
|
"editor.rulers": [80, 100, 120],
|
|
"files.eol": "\n",
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.python",
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 4
|
|
},
|
|
"[javascript]": {
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2
|
|
},
|
|
"python.analysis.extraPaths": [
|
|
"../../odoo-source/odoo",
|
|
],
|
|
"python.testing.pytestArgs": [
|
|
"--odoo-http",
|
|
"."
|
|
],
|
|
"python.testing.pytestEnabled": false,
|
|
"python.testing.unittestEnabled": false
|
|
}
|