Compare commits

...

2 commits

Author SHA1 Message Date
ItsDrike e4ae358bd3
Update gitignore 2024-06-30 21:48:43 +02:00
ItsDrike 5c8e707382
Add editorconfig file 2024-06-30 21:39:24 +02:00
2 changed files with 27 additions and 2 deletions

17
.editorconfig Normal file
View 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
View file

@ -2,13 +2,15 @@
__pycache__/
*.py[cod]
*$py.class
# Cache directories from various tools
.pytest_cache/
.mypy_cache/
# Virtual environments
.venv/
# Python packaging files
# Python packaging / distribution files
dist/
# Pytest coverage reports
@ -30,8 +32,14 @@ docs/_build/
.replit
.neoconf.json
# Auto-generated folder attributes for MacOS
# Folder attributes / configuration files on various platforms
.DS_STORE
[Dd]esktop.ini
.directory
# Trash directories
.Trash-*
$RECYCLE.BIN/
# Environmental, backup and personal files
.env