rqbit/.zed/settings.json
2024-05-06 23:02:10 +03:00

18 lines
499 B
JSON

// Folder-specific settings
//
// For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://zed.dev/docs/configuring-zed#folder-specific-settings
{
"lsp": {
"rust-analyzer": {
"initialization_options": {
"check": {
"command": "clippy" // rust-analyzer.check.command (default: "check")
},
"cargo": {
"features": ["librqbit/storage_middleware"]
}
}
}
}
}