mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-12 09:37:25 +00:00
Latex errors cannot be parsed by humans, so just use inline math which we had working elsewhere already. Also use simplified character for ế, for latex compatibility.
29 lines
703 B
JSON
29 lines
703 B
JSON
{
|
|
"python.pythonPath": "${workspaceFolder}/.venv",
|
|
"python.linting.pycodestyleEnabled": false,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.enabled": true,
|
|
"restructuredtext.confPath": "${workspaceFolder}/doc/api",
|
|
"spellright.language": [
|
|
"en_US"
|
|
],
|
|
"spellright.ignoreFiles": [
|
|
"**/.gitignore",
|
|
"**/.vscode",
|
|
"**/conf.py",
|
|
"**/_version.py",
|
|
],
|
|
"spellright.ignoreRegExps": [
|
|
"/:math:`[^]*?`/gm",
|
|
"/``[^]*?``/gm",
|
|
"/'[^]*?'/gm",
|
|
"/.. data:: [^]*?'*$/gm",
|
|
],
|
|
"spellright.documentTypes": [
|
|
"markdown",
|
|
"latex",
|
|
"plaintext",
|
|
"python"
|
|
]
|
|
}
|