mirror of
https://github.com/penpot/penpot.git
synced 2026-04-30 21:59:10 +00:00
30 lines
757 B
JSON
30 lines
757 B
JSON
{
|
|
"files.exclude": {
|
|
"**/.clj-kondo": true,
|
|
"**/.cpcache": true,
|
|
"**/.lsp": true,
|
|
"**/.shadow-cljs": true,
|
|
"**/node_modules": true
|
|
},
|
|
"rust-analyzer.linkedProjects": [
|
|
"render-wasm/Cargo.toml"
|
|
],
|
|
"rust-analyzer.check.overrideCommand": [
|
|
"cargo",
|
|
"clippy",
|
|
"--message-format=json",
|
|
"--all-targets",
|
|
"--target=wasm32-unknown-emscripten",
|
|
"--",
|
|
"-D",
|
|
"warnings",
|
|
"-D",
|
|
"static_mut_refs"
|
|
],
|
|
"rust-analyzer.cargo.extraEnv": {
|
|
"CARGO_BUILD_TARGET": "wasm32-unknown-emscripten",
|
|
"SKIA_BINARIES_URL": "https://github.com/penpot/skia-binaries/releases/download/0.93.1/skia-binaries-319323662b1685a112f5-wasm32-unknown-emscripten-gl-svg-textlayout-binary-cache-webp.tar.gz"
|
|
}
|
|
}
|
|
|