Skip to content

Commit

Permalink
Fix incorrect syntax in editorconfig pattern list
Browse files Browse the repository at this point in the history
IntelliJ interprets the pattern as files with a space as first character when there is a space in the pattern list.
  • Loading branch information
mortenlj committed Jun 13, 2023
1 parent c05af60 commit f9c972e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ ij_formatter_tags_enabled = false
ij_smart_tabs = false
ij_wrap_on_typing = false

[{*.yml, *.yaml}]
[{*.yml,*.yaml}]
indent_style = space
indent_size = 2

[{*.go, *.go2}]
[{*.go,*.go2}]
indent_style = tab
ij_continuation_indent_size = 4
ij_go_add_leading_space_to_comments = true
Expand Down

0 comments on commit f9c972e

Please sign in to comment.