From b7cfe3c44cafb65eec527173cffdb6c7d83e0449 Mon Sep 17 00:00:00 2001 From: Victoria <126434697+vicpsantana@users.noreply.github.com> Date: Thu, 26 Sep 2024 16:13:09 -0300 Subject: [PATCH] Update .gitignore Signed-off-by: Victoria <126434697+vicpsantana@users.noreply.github.com> --- .gitignore | 181 +++++++++++++++++++---------------------------------- 1 file changed, 66 insertions(+), 115 deletions(-) diff --git a/.gitignore b/.gitignore index b6e4761..11b5161 100644 --- a/.gitignore +++ b/.gitignore @@ -1,129 +1,80 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class +# More on Git Ignore: https://git-scm.com/docs/gitignore -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -pip-wheel-metadata/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py,cover -.hypothesis/ -.pytest_cache/ - -# Translations -*.mo -*.pot - -# Django stuff: +# Logs and temp files *.log -local_settings.py -db.sqlite3 -db.sqlite3-journal +*.tmp +*.lock -# Flask stuff: -instance/ -.webassets-cache +# OS files +.DS_Store +Thumbs.db -# Scrapy stuff: -.scrapy +# Bash history file +.bash_history -# Sphinx documentation -docs/_build/ +# Backup files created by Bash +*~ -# PyBuilder -target/ +# Bash execution output files +*.out +*.bak +*.swp -# Jupyter Notebook -.ipynb_checkpoints +# GitHub Actions +.github/workflows/*.log +.github/actions/*.log -# IPython -profile_default/ -ipython_config.py +# GitHub Actions cache +.github/actions/cache -# pyenv -.python-version +# VS Code workspace settings +.vscode/ +.vscode/settings.json +.vscode/tasks.json +.vscode/launch.json +.vscode/extensions.json -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock +# VS Code extensions directories +.vscode-test/ +.vscode-extensions/ -# PEP 582; used by e.g. github.com/David-OConnor/pyflow -__pypackages__/ +# node modules +node_modules/ -# Celery stuff -celerybeat-schedule -celerybeat.pid +# environment vars +.env +.env.local +.env.production +.env.test -# SageMath parsed files -*.sage.py +# Compiled code or temporary files +*.pyc +*.class +*.o -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ +# Build output and distribution directories +dist/ +build/ + +# Lock files +package-lock.json +yarn.lock +pipfile.lock + +# JetBrains IDEs +.idea/ +*.iml + +# Sublime project settings +*.sublime-workspace +*.sublime-project + +# Vim temporary files +*.swp +*.swo + +# Emacs backup files +*~ + +# Shellcheck temporary files +*.shellcheck