Skip to content

Commit 1884933

Browse files
committed
Auto merge of #2038 - Turbo87:editorconfig, r=NullVoxPopuli
editorconfig: Adjust indent size for Ember-related files We've switched to "2 spaces" (the default in Ember.js apps) quite a while ago, but apparently missed to adjust the editorconfig file. This PR adjusts the file to teach my editor to indent properly... 😅 r? @locks
2 parents 82e3c47 + 295ab36 commit 1884933

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.editorconfig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ indent_size = 4
1515

1616
[*.js]
1717
indent_style = space
18-
indent_size = 4
18+
indent_size = 2
1919

2020
[*.hbs]
2121
insert_final_newline = false
2222
indent_style = space
23-
indent_size = 4
23+
indent_size = 2
2424

2525
[*.css]
2626
indent_style = space
27-
indent_size = 4
27+
indent_size = 2
2828

2929
[*.html]
3030
indent_style = space
31-
indent_size = 4
31+
indent_size = 2
3232

3333
[*.{diff,md}]
3434
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)