Skip to content

Commit

Permalink
Add basic EditorConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
acdha authored and rstorey committed Jun 15, 2018
1 parent c8a0066 commit 43b5ec6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# See http://editorconfig.org for format details and
# http://editorconfig.org/#download for editor / IDE integration

root = true

[*]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
charset = utf-8

# Makefiles always use tabs for indentation
[Makefile]
indent_style = tab

# We don't want to apply our defaults to third-party code or minified bundles:
[**/{external,vendor}/**,**.min.{js,css}]
indent_style = ignore
indent_size = ignore

0 comments on commit 43b5ec6

Please sign in to comment.