Files
pybricks-api/.vscode/settings.json
T
Laurens Valk b6f75eca9c config: ignore literals by regexp and config files
No need to have all of them in the ignore list now.
2020-01-16 13:28:09 +01:00

27 lines
657 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::[^]*?.. endmath/gm",
"/``[^]*?``/gm",
],
"spellright.documentTypes": [
"markdown",
"latex",
"plaintext",
"python"
]
}