aboutsummaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-17 12:31:10 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-17 12:31:10 +0000
commit56a25c72c8b1701c296bc65251a45b0a81366451 (patch)
treeb394458ec37b6a45587968d8790e1a5228a7b41d /.editorconfig
parent8f3a666743c139ff2649c903f864d5bb13a1f94e (diff)
downloadruby-56a25c72c8b1701c296bc65251a45b0a81366451.tar.gz
Use `*` instead of `**` in .editorconfig
It seems `**` is same as `*` when no `/` exist. [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59609 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/.editorconfig b/.editorconfig
index f404977180..7e1368c74e 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -8,10 +8,10 @@ tab_width = 8
indent_style = tab
indent_size = 4
-[**.bat]
+[*.bat]
end_of_line = crlf
-[**.rb]
+[*.rb]
indent_style = space
indent_size = 2