Files
pybricks-api/.vscode/settings.json
T

30 lines
760 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",
"**/_version.py",
],
"spellright.ignoreRegExps": [
"/:math:`[^]*?`/gm",
"/``[^]*?``/gm",
"/'[^]*?'/gm",
"/.. data:: [^]*?'*$/gm",
],
"spellright.documentTypes": [
"markdown",
"latex",
"plaintext",
"python"
]
}