# Rust-analyzer configuration
# Enables LSP support for all features, not just default ones
# See: https://rust-analyzer.github.io/manual.html#configuration
[]
# Enable all features for better code completion and diagnostics
# This ensures simd-json and other optional features are analyzed
= "all"
# Build scripts and proc-macros
= true
[]
# Use clippy instead of cargo check for better diagnostics
= "clippy"
# Include all features when checking
= "all"
[]
# Enable all diagnostics
= []
[]
# Enable proc-macro support
= true
[]
# Show inlay hints for types, parameters, etc.
= true
= "skip_trivial"