Files
ascend/.helix/languages.toml
2025-02-27 22:52:25 +01:00

17 lines
465 B
TOML

[[language]]
name = "rust"
language-servers = ["rust-analyzer", "tailwindcss-ls"]
[language-server.rust-analyzer.config]
# procMacro = { ignored = { leptos_macro = ["server"] } }
cargo = { features = ["ssr", "hydrate"] }
check = { command = "clippy" }
rustfmt = { overrideCommand = [
"sh",
"-c",
"rustfmt --emit stdout --edition 2024 | leptosfmt --stdin",
] }
[language-server.tailwindcss-ls]
config = { userLanguages = { rust = "html", "*.rs" = "html" } }