Compare commits

...

2 commits

Author SHA1 Message Date
ItsDrike 479a46777e
update crlf rant 2024-06-30 21:57:57 +02:00
ItsDrike 34f40ea1a8
Update gitignore 2024-06-30 21:56:17 +02:00
2 changed files with 12 additions and 4 deletions

2
.gitattributes vendored
View file

@ -1,2 +1,2 @@
# (C'mon Windows, CRLF is not cool, it's just a waste of a byte) # (CRLF sucks, it's just a waste of a byte, Windows is stupid for using it)
* text=auto eol=lf * text=auto eol=lf

14
.gitignore vendored
View file

@ -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
@ -19,7 +21,7 @@ coverage.xml
# Sphinx documentation # Sphinx documentation
docs/_build/ docs/_build/
# Pyenv local version information # Local python version information (pyenv/rye)
.python-version .python-version
# Editor generated files # Editor generated files
@ -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