Add editorconfig (#342)

This commit is contained in:
Casey Rodarmor 2018-08-20 00:28:15 -07:00 committed by GitHub
parent f0404d434c
commit c615a3fb0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
.editorconfig Normal file
View file

@ -0,0 +1,22 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
# Text is UTF-8
charset = utf-8
# Unix-style newlines
end_of_line = lf
# Newline ending every file
insert_final_newline = true
# Soft tabs
indent_style = space
# Two-space indentation
indent_size = 2
# Trim trailing whitespace
trim_trailing_whitespace = true
[justfile]
# Use tabs in justfile
indent_style = tab