open_workshop/.vscode/settings.json
2025-10-05 20:52:04 +02:00

23 lines
462 B
JSON

{
"editor.rulers": [80, 100, 120],
"files.eol": "\n",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.insertSpaces": true,
"editor.tabSize": 4
},
"[javascript]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"python.analysis.extraPaths": [
"../odoo",
],
"python.testing.pytestArgs": [
"--odoo-http",
"./addons/template"
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false
}