0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 08:30:56 +01:00
mongodb/.vscode/linux-virtual-workstation.code-workspace

62 lines
1.6 KiB
Plaintext
Raw Normal View History

{
"folders": [
{
"path": ".."
}
],
"settings": {
"clangd.arguments": [
"--query-driver=/opt/mongodbtoolchain/v4/bin/clang++",
"-j=4"
],
"clangd.checkUpdates": true,
"clang-format.executable": "/opt/mongodbtoolchain/v3/bin/clang-format",
"clang-tidy.executable": "/opt/mongodbtoolchain/v4/bin/clang-tidy",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript"
],
"python.autoComplete.extraPaths": [
"/opt/mongodbtoolchain/v4/share/gcc-11.3.0/python",
"src/third_party/scons-3.1.2/scons-local-3.1.2"
],
"python.defaultInterpreterPath": "python3-venv/bin/python",
"python.formatting.yapfPath": "python3-venv/bin/yapf",
"python.formatting.provider": "yapf",
"python.linting.pylintEnabled": true,
"python.analysis.extraPaths": [
"/opt/mongodbtoolchain/v4/share/gcc-11.3.0/python",
"src/third_party/scons-3.1.2/scons-local-3.1.2"
],
"python.linting.mypyEnabled": true,
"python.linting.mypyPath": "python3-venv/bin/mypy",
"[c]": {
"editor.defaultFormatter": "xaver.clang-format",
"editor.formatOnSave": true,
},
"[cpp]": {
"editor.defaultFormatter": "xaver.clang-format",
"editor.formatOnSave": true,
},
"[javascript]": {
"editor.defaultFormatter": "xaver.clang-format",
"editor.formatOnSave": true,
},
"files.associations": {
"SConstruct": "python",
"SConscript": "python",
"*.idl": "yaml",
},
},
"extensions": {
"recommendations": [
"llvm-vs-code-extensions.vscode-clangd",
"dbaeumer.vscode-eslint",
"ms-python.python",
"xaver.clang-format",
"notskm.clang-tidy"
]
}
}