forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.default.json
46 lines (46 loc) · 1.37 KB
/
settings.default.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
46
{
"cmake.configureOnOpen": true,
"cmake.sourceDirectory": "${workspaceFolder}/cpp/perspective/",
"cmake.buildDirectory": "${workspaceFolder}/cpp/perspective/dist/vscode",
"cmake.buildEnvironment": {
"PSP_ENABLE_WASM": "1"
},
"python.formatting.provider": "black",
"rust-analyzer.server.extraEnv": {
"PSP_ROOT_DIR": "../..",
"PSP_DISABLE_CPP": "1",
"RA_LOG": "rust_analyzer::reload=info",
"CARGO_TARGET_DIR": "${workspaceFolder}/perspective-viewer/dist/analyzer"
},
"rust-analyzer.check.extraArgs": ["--target-dir=rust/target/vscode"],
"rust-analyzer.rustfmt.overrideCommand": [
"cargo",
"run",
"-p",
"perspective-lint"
],
"rust-analyzer.files.excludeDirs": [
"node_modules",
"py_modules",
"dist/",
"rust/perspective-js/node_modules",
"rust/perspective-python/bench",
"rust/perspective-viewer/node_modules",
"rust/target"
],
"rust-analyzer.checkOnSave": true,
"rust-analyzer.check.extraEnv": {
"PSP_DISABLE_CPP": "1"
},
"rust-analyzer.check.overrideCommand": [
"cargo",
"clippy",
"--workspace",
"--message-format=json",
"--target-dir=rust/target/vscode"
],
"playwright.env": {
"TZ": "UTC"
},
"clangd.arguments": ["--enable-config"]
}