mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-07-27 19:57:02 +00:00
This removes versioneer for versioning. The version depends on the pybricks-micropython version targeted so it doesn't make sense to use automatic versioning here.
29 lines
732 B
JSON
29 lines
732 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",
|
|
],
|
|
"spellright.documentTypes": [
|
|
"markdown",
|
|
"latex",
|
|
"plaintext",
|
|
"python"
|
|
]
|
|
}
|