1
0
mirror of https://github.com/gamaio/v2api.git synced 2025-08-13 10:18:45 +00:00

Initial Commit

This commit is contained in:
David Todd
2019-08-18 00:45:24 -05:00
commit 0435b0e856
4 changed files with 67 additions and 0 deletions

36
.editorconfig Normal file
View File

@@ -0,0 +1,36 @@
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# Use 4 spaces for the Python files
[*.py]
indent_size = 4
max_line_length = 80
# The JSON files contain newlines inconsistently
[*.json]
insert_final_newline = ignore
# Minified JavaScript files shouldn't be changed
[**.min.js]
indent_style = ignore
insert_final_newline = ignore
# Makefiles always use tabs for indentation
[Makefile]
indent_style = tab
# Batch files use tabs for indentation
[*.bat]
indent_style = tab
[*.md]
trim_trailing_whitespace = false