summaryrefslogtreecommitdiff
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
commit50df046783bf09280522a5ae79575acc9ac89329 (patch)
treeb394458ec37b6a45587968d8790e1a5228a7b41d /.editorconfig
parentbab14d39fb752e4443cddf1c9e7a5afa40aec489 (diff)
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