Compare commits
2 commits
98a12bc469
...
e4ae358bd3
Author | SHA1 | Date | |
---|---|---|---|
ItsDrike | e4ae358bd3 | ||
ItsDrike | 5c8e707382 |
17
.editorconfig
Normal file
17
.editorconfig
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# Check http://editorconfig.org for more information
|
||||||
|
# This is the main config file for this project:
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*.{py, pyi}]
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
12
.gitignore
vendored
12
.gitignore
vendored
|
@ -2,13 +2,15 @@
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
|
|
||||||
|
# Cache directories from various tools
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
.mypy_cache/
|
.mypy_cache/
|
||||||
|
|
||||||
# Virtual environments
|
# Virtual environments
|
||||||
.venv/
|
.venv/
|
||||||
|
|
||||||
# Python packaging files
|
# Python packaging / distribution files
|
||||||
dist/
|
dist/
|
||||||
|
|
||||||
# Pytest coverage reports
|
# Pytest coverage reports
|
||||||
|
@ -30,8 +32,14 @@ docs/_build/
|
||||||
.replit
|
.replit
|
||||||
.neoconf.json
|
.neoconf.json
|
||||||
|
|
||||||
# Auto-generated folder attributes for MacOS
|
# Folder attributes / configuration files on various platforms
|
||||||
.DS_STORE
|
.DS_STORE
|
||||||
|
[Dd]esktop.ini
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# Trash directories
|
||||||
|
.Trash-*
|
||||||
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
# Environmental, backup and personal files
|
# Environmental, backup and personal files
|
||||||
.env
|
.env
|
||||||
|
|
Loading…
Reference in a new issue