From b230183ded67dd3576db57d4cb7f1859d18b1370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Va=C5=A1ek=20Henzl?= Date: Sun, 24 Sep 2017 00:32:17 +1200 Subject: [PATCH] Fix glob patterns in .editorconfig [*.{xml}] matched eg. foo.{xml} but not foo.xml --- .editorconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index ce801a1a..5d66bc42 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,11 +10,11 @@ trim_trailing_whitespace = true indent_style = tab indent_size = 4 -[*.{xml}] +[*.xml] indent_style = tab indent_size = 4 -[*.{neon}] +[*.neon] indent_style = tab indent_size = 4 @@ -22,6 +22,6 @@ indent_size = 4 indent_style = space indent_size = 2 -[{composer.json}] +[composer.json] indent_style = tab indent_size = 4