Skip to content

Commit

Permalink
added .editorconfig to force LF line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
decalage2 committed Nov 22, 2017
1 parent 597964a commit 841a5de
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Top-most EditorConfig file
root = true

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

# Four-space indentation
indent_size = 4
indent_style = space

trim_trailing_whitespace = true

[*.bat]
end_of_line = crlf

[*.yml]
# Two-space indentation
indent_size = 2
indent_style = space

# Tab indentation (no size specified)
[Makefile]
indent_style = tab

0 comments on commit 841a5de

Please sign in to comment.