mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-07-28 04:07:46 +00:00
37 lines
999 B
JSON
37 lines
999 B
JSON
{
|
|
"python.pythonPath": "${workspaceFolder}/.venv",
|
|
"python.linting.pycodestyleEnabled": false,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.enabled": true,
|
|
"files.associations": {"*.inc": "restructuredtext"},
|
|
"restructuredtext.confPath": "${workspaceFolder}/doc/api",
|
|
"spellright.language": [
|
|
"en_US"
|
|
],
|
|
"spellright.ignoreFiles": [
|
|
"**/.gitignore",
|
|
"**/.vscode",
|
|
"**/conf.py"
|
|
],
|
|
"spellright.ignoreRegExps": [
|
|
"/:math:`[^]*?`/gm",
|
|
"/``[^]*?``/gm",
|
|
"/'[^]*?'/gm",
|
|
"/.. data:: [^]*?'*$/gm",
|
|
"/.. figure:: [^]*?'*$/gm",
|
|
"/.. include:: [^]*?'*$/gm",
|
|
"/.. raw:: [^]*?'*$/gm",
|
|
"/.. currentmodule:: [^]*?'*$/gm",
|
|
"/.. _[^]*?'*$/gm",
|
|
"/:target:[^]*?'*$/gm",
|
|
"/:alt:[^]*?'*$/gm",
|
|
],
|
|
"spellright.documentTypes": [
|
|
"markdown",
|
|
"latex",
|
|
"plaintext",
|
|
"python",
|
|
"restructuredtext",
|
|
]
|
|
}
|