Skip to content

Commit

Permalink
Fix indentation rules in .editorconfig (#916)
Browse files Browse the repository at this point in the history
* Specify correct indentation level in .editorconfig

* Add exception to indent package.json with 2 spaces since NPM effectively mandates it
  • Loading branch information
cspotcode authored and Gerrit0 committed Dec 11, 2018
1 parent 7424d97 commit f6ef9ca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .editorconfig
Expand Up @@ -5,7 +5,10 @@ root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[package.json]
indent_size = 2

0 comments on commit f6ef9ca

Please sign in to comment.