Skip to content

Commit

Permalink
.editorconfig for json files
Browse files Browse the repository at this point in the history
The .editorconfig was dictating 4-space indent for all files, but we use
2-space indent for json.  Update it accordingly to make editing such
files more likely to do the right thing.
  • Loading branch information
jbytheway committed Sep 10, 2019
1 parent 0d20828 commit 3544dae
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ root = true
[*]
end_of_line = lf
insert_final_newline = true
# 4 space indentation
indent_style = space
indent_size = 4

[*.json]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2

0 comments on commit 3544dae

Please sign in to comment.