23 lines
462 B
JSON
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
|
|
}
|