forked from secretflow/spu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
45 lines (45 loc) · 1.34 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"C_Cpp.intelliSenseEngine": "disabled",
"C_Cpp.autocomplete": "disabled",
"clangd.arguments": [
"--header-insertion=never"
],
"testMate.cpp.discovery.testListCaching": true,
"testMate.cpp.test.parallelExecutionOfExecutableLimit": 8,
"testMate.cpp.test.advancedExecutables": [
{
"pattern": "bazel-bin/**/*{_test}",
"cwd": "${workspaceFolder}",
"gtest": {
"testGrouping": {
"groupBySource": {
"label": "${sourceRelPath[1:]}"
}
}
}
}
],
"files.watcherExclude": {
"**/.git/**": true,
"**/.cache/**": true,
"**/bazel-*/**": true,
"**/external/**": true
},
"bazel.enableCodeLens": true,
"editor.formatOnSave": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"[dockerfile]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.formatOnSave": false,
},
"python.formatting.provider": "none",
"esbonio.sphinx.confDir": "",
"git.ignoreLimitWarning": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"mlir.server_path": "bazel-bin/libspu/compiler/tools/mlir-pphlo-lsp"
}