Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
Signed-off-by: Victoria <126434697+vicpsantana@users.noreply.github.com>
  • Loading branch information
vicpsantana authored Sep 26, 2024
1 parent e116d58 commit b7cfe3c
Showing 1 changed file with 66 additions and 115 deletions.
181 changes: 66 additions & 115 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b7cfe3c

Please sign in to comment.