Skip to content

Commit f6ef9ca

Browse files
cspotcodeGerrit0
authored andcommitted
Fix indentation rules in .editorconfig (#916)
* Specify correct indentation level in .editorconfig * Add exception to indent package.json with 2 spaces since NPM effectively mandates it
1 parent 7424d97 commit f6ef9ca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.editorconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ root = true
55
[*]
66
charset = utf-8
77
indent_style = space
8-
indent_size = 2
8+
indent_size = 4
99
end_of_line = lf
1010
insert_final_newline = true
1111
trim_trailing_whitespace = true
12+
13+
[package.json]
14+
indent_size = 2

0 commit comments

Comments
 (0)