initial commit

This commit is contained in:
Vladislav Hristov
2018-05-17 18:03:59 +03:00
parent cd37de3895
commit 1f947ff148
27 changed files with 1502 additions and 0 deletions

32
.editorconfig Normal file
View File

@@ -0,0 +1,32 @@
# @see editorconfig.org
root = true
[*]
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.json]
indent_size = 2
[*.js]
indent_size = 4
[*.tag]
indent_size = 2
[*.yml]
indent_size = 2
# Trailing whitespace is significant in markdown files.
[*.md]
trim_trailing_whitespace = false
max_line_length = 80
[Makefile]
indent_style = tab
indent_size = 4