Skip to content

Commit

Permalink
Add .editorconfig (emscripten-core#8359)
Browse files Browse the repository at this point in the history
Mainly so that editors know that this project uses 2 space indents
for Python instead of the more typical 4.
  • Loading branch information
msabramo authored and sbc100 committed Mar 28, 2019
1 parent fce613d commit 500540d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

[*.{js,py}]
charset = utf-8
indent_style = space
indent_size = 2

0 comments on commit 500540d

Please sign in to comment.