Skip to content

Commit 19de810

Browse files
vhenzlondrejmirtes
authored andcommitted
Fix glob patterns in .editorconfig
[*.{xml}] matched eg. foo.{xml} but not foo.xml
1 parent e60c66f commit 19de810

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.editorconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ trim_trailing_whitespace = true
1010
indent_style = tab
1111
indent_size = 4
1212

13-
[*.{xml}]
13+
[*.xml]
1414
indent_style = tab
1515
indent_size = 4
1616

17-
[*.{neon}]
17+
[*.neon]
1818
indent_style = tab
1919
indent_size = 4
2020

2121
[*.{yaml,yml}]
2222
indent_style = space
2323
indent_size = 2
2424

25-
[{composer.json}]
25+
[composer.json]
2626
indent_style = tab
2727
indent_size = 4

0 commit comments

Comments
 (0)