diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-05-07 17:25:05 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-07 17:25:05 +0900 |
| commit | bc620824be20ba5fda4ffbdc813b73ba4b160180 (patch) | |
| tree | 0f8a65c84588be31b9ddcd969b2cf431fc15d056 | |
| parent | 4458000404a9a05988875d62fdefd6a0554da6f7 (diff) | |
| parent | 1d5d9121482b5839d95368108d8724c9651b894f (diff) | |
| download | mruby-bc620824be20ba5fda4ffbdc813b73ba4b160180.tar.gz mruby-bc620824be20ba5fda4ffbdc813b73ba4b160180.zip | |
Merge pull request #5443 from jbampton/order-editorconfig-properties
Order the EditorConfig properties
| -rw-r--r-- | .editorconfig | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.editorconfig b/.editorconfig index 705b1f022..70cc78f0b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,38 +6,38 @@ root = true [*] -indent_style = tab -indent_size = 8 -tab_width = 8 -end_of_line = lf charset = utf-8 +end_of_line = lf +indent_size = 8 +indent_style = tab insert_final_newline = true +tab_width = 8 [{Makefile,Makefile.*,makefile,*.mk}] trim_trailing_whitespace = true #max_line_length = 80 [*.{c,cc,C,cxx,cpp,h,hh,H,hxx,hpp,inc,y}] -indent_style = space indent_size = 2 +indent_style = space trim_trailing_whitespace = true #max_line_length = 120 [{*.rb,Rakefile,rakefile,*.rake,*.gemspec,*.gembox}] -indent_style = space indent_size = 2 +indent_style = space trim_trailing_whitespace = true #max_line_length = 120 [*.bat] -end_of_line = crlf charset = latin1 +end_of_line = crlf #max_line_length = 80 [*.{yaml,yml}] -indent_style = space indent_size = 2 +indent_style = space [*.md] -indent_style = space indent_size = 2 +indent_style = space |
