16 lines
501 B
JSON
16 lines
501 B
JSON
{
|
|
"python.pythonPath": "${workspaceRoot}/.tox/develop/bin/python",
|
|
"python.formatting.provider": "yapf",
|
|
"files.exclude": {
|
|
"**/*.pyc": true,
|
|
"*.egg-info": true,
|
|
".cache": true,
|
|
"build": true,
|
|
"dist": true
|
|
},
|
|
"editor.rulers": [79],
|
|
"restructuredtext.builtDocumentationPath": "${workspaceRoot}/docs/_build/html",
|
|
"restructuredtext.confPath": "${workspaceRoot}/docs",
|
|
"restructuredtext.linter.executablePath": "${workspaceRoot}/.tox/docs/bin/restructuredtext-lint"
|
|
}
|