From e2d1bb1fa4850c8212a7cdbd76a92634a1115453 Mon Sep 17 00:00:00 2001 From: duerst Date: Tue, 26 Feb 2019 01:34:17 +0000 Subject: add exceptions for indenting conventions for files related to regular expressions Ruby uses the Oniguruma/Onigmo regular expression engine, including the underlying character encoding framework. In contrast to other code implementing Ruby, the regular expression engine related code is formatted with two spaces per indent level. This commit adds rules for these files. (The commit may not completely cover all related files.) [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- .editorconfig | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig index cb2729fff9..e8bb00b588 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,6 +11,12 @@ trim_trailing_whitespace = true [*.bat] end_of_line = crlf +[reg*] +indent_size = 2 + +[enc/*] +indent_size = 2 + [*.gemspec] indent_size = 2 -- cgit v1.2.3