editorconfig: allow empty alternates (#14107)

This commit is contained in:
Remo Senekowitsch
2025-07-29 01:02:42 +02:00
committed by GitHub
parent d9fe4798fa
commit 2d5a19f081

View File

@@ -228,6 +228,7 @@ impl FromStr for Ini {
let glob = GlobBuilder::new(&glob_str)
.literal_separator(true)
.backslash_escape(true)
.empty_alternates(true)
.build()?;
ini.sections.push(Section {
glob: glob.compile_matcher(),