We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28cb327 commit 616fff0Copy full SHA for 616fff0
server/src/core/config.rs
@@ -162,7 +162,7 @@ impl Serialize for DiagnosticFilter {
162
if self.negation {
163
path_str = format!("!{}", path_str);
164
}
165
- s.serialize_field("path", &path_str)?;
+ s.serialize_field("paths", &path_str)?;
166
let codes: Vec<String> = self.codes.iter().map(|r| r.as_str().to_string()).collect();
167
s.serialize_field("codes", &codes)?;
168
s.serialize_field("types", &self.types)?;
0 commit comments