mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 06:38:03 +08:00
Some minor fixes to issues I ran into using devcontainer on this project with vscode. - Add `esbenp.prettier-vscode` to the recommended extensions list as it's already used in `.vscode/settings.json` - Install `wasm32-unknown-unknown` Rust target in devcontainer - Add cargo-binstall and pin cargo-about version in devcontainer - Remove `no-clearly-defined = true` from `about.toml`: - cargo-about 0.9.1 fails to run if `no-clearly-defined` is present - cargo-about 0.8.0 already [removed support](https://github.com/EmbarkStudios/cargo-about/blob/main/CHANGELOG.md#080---2025-09-05) for clearlydefined.io, so the argument is a no-op
22 lines
476 B
JSON
22 lines
476 B
JSON
{
|
|
// NOTE: Keep this in sync with `.devcontainer/devcontainer.json`
|
|
"recommendations": [
|
|
// Rust
|
|
"rust-lang.rust-analyzer",
|
|
"tamasfe.even-better-toml",
|
|
// Web
|
|
"dbaeumer.vscode-eslint",
|
|
"esbenp.prettier-vscode",
|
|
"svelte.svelte-vscode",
|
|
"vitaliymaz.vscode-svg-previewer",
|
|
// Code quality
|
|
"wayou.vscode-todo-highlight",
|
|
"streetsidesoftware.code-spell-checker",
|
|
// Git
|
|
"mhutchie.git-graph",
|
|
"qezhu.gitlink",
|
|
// Helpful
|
|
"wmaurer.change-case"
|
|
]
|
|
}
|