cairo-language-server 2.20.0

The Cairo Language Server
Documentation
1
2
3
4
5
6
7
use lsp_types::CodeAction;

use super::{ManifestActionContext, remove_key_from_diagnostic_data_action};

pub fn build(ctx: &ManifestActionContext<'_>) -> Vec<CodeAction> {
    remove_key_from_diagnostic_data_action(ctx, "Remove conflicting").into_iter().collect()
}