From e4ae358bd36569c032b9a4bbdf5bb4c976544032 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sun, 30 Jun 2024 21:48:43 +0200 Subject: [PATCH 1/3] Update gitignore --- .gitignore | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 630cbe6..430cf74 100644 --- a/.gitignore +++ b/.gitignore @@ -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 From 34f40ea1a80dce94ad001ae7583715dc7ddc40d4 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sun, 30 Jun 2024 21:48:43 +0200 Subject: [PATCH 2/3] Update gitignore --- .gitignore | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 630cbe6..58c2ee3 100644 --- a/.gitignore +++ b/.gitignore @@ -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 @@ -19,7 +21,7 @@ coverage.xml # Sphinx documentation docs/_build/ -# Pyenv local version information +# Local python version information (pyenv/rye) .python-version # Editor generated files @@ -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 From 479a46777ecf7570fdeb63ff845261465f9fb95f Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sun, 30 Jun 2024 21:57:57 +0200 Subject: [PATCH 3/3] update crlf rant --- .gitattributes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 020dbb6..521ac1b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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