Files
pybricks-api/.vscode/settings.json
T
David Lechner a2d9c33eb5 jedi: add new pybricks_jedi package
This package will be used in Pybricks Code to provide some intellesense
operations.
2022-06-24 14:52:45 -05:00

53 lines
1.5 KiB
JSON

{
"python.autoComplete.extraPaths": ["jedi/src"],
"python.formatting.provider": "black",
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.pycodestyleEnabled": false,
"python.linting.enabled": true,
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.python"
},
"python.languageServer": "Pylance",
"python.testing.pytestArgs": [
"jedi/tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"files.associations": {"*.inc": "restructuredtext"},
"restructuredtext.confPath": "${workspaceFolder}/doc/main",
"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",
],
"rewrap.wrappingColumn": 78,
"python.analysis.extraPaths": [
"jedi/src"
],
}