Compare commits
No commits in common. "e4ae358bd36569c032b9a4bbdf5bb4c976544032" and "98a12bc469bf4acf06df3b37ca7ca3e049d3be23" have entirely different histories.
e4ae358bd3
...
98a12bc469
|
@ -1,17 +0,0 @@
|
||||||
# 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,15 +2,13 @@
|
||||||
__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 / distribution files
|
# Python packaging files
|
||||||
dist/
|
dist/
|
||||||
|
|
||||||
# Pytest coverage reports
|
# Pytest coverage reports
|
||||||
|
@ -32,14 +30,8 @@ docs/_build/
|
||||||
.replit
|
.replit
|
||||||
.neoconf.json
|
.neoconf.json
|
||||||
|
|
||||||
# Folder attributes / configuration files on various platforms
|
# Auto-generated folder attributes for MacOS
|
||||||
.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