19 lines
463 B
JSON
19 lines
463 B
JSON
{
|
|
"esbonio.sphinx.pythonCommand": "${venv:.venv}/bin/python",
|
|
"esbonio.sphinx.buildCommand": [
|
|
"sphinx-build",
|
|
"-b",
|
|
"html",
|
|
"docs",
|
|
"docs/_build/html"
|
|
],
|
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.pytestArgs": [
|
|
"--ignore=tests/legacy",
|
|
"--ignore=tests/support",
|
|
"tests"
|
|
],
|
|
"restructuredtext.confPath": "${workspaceFolder}/docs"
|
|
}
|