Skip to content

Commit

Permalink
🎉 initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Sanchez committed Jul 30, 2020
1 parent 3235778 commit 7325346
Show file tree
Hide file tree
Showing 48 changed files with 2,407 additions and 1,702 deletions.
38 changes: 38 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Git
.git
.gitignore
.github

# Docker
.dockerignore

# IDE
.idea
.vscode

# Byte-compiled / optimized / DLL files
__pycache__/
**/__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.py[cod]
*$py.class
.pytest_cache/
..mypy_cache/

# poetry
.venv

# C extensions
*.so

# Virtual environment
.venv
venv

.DS_Store
.AppleDouble
.LSOverride
._*
27 changes: 15 additions & 12 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
# http://editorconfig.org

# Check http://editorconfig.org for more information
# This is the main config file for this project:
root = true

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

[*.bat]
indent_style = tab
end_of_line = crlf

[LICENSE]
insert_final_newline = false
[*.{py, pyi}]
indent_style = space
indent_size = 4

[Makefile]
indent_style = tab

[*.md]
trim_trailing_whitespace = false

[*.{diff,patch}]
trim_trailing_whitespace = false
Loading

0 comments on commit 7325346

Please sign in to comment.