Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .gitignore #9

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
201 changes: 86 additions & 115 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,129 +1,100 @@
# 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

# OS files
.DS_Store
Thumbs.db

# Flask stuff:
instance/
.webassets-cache
# Bash history file
.bash_history

# Scrapy stuff:
.scrapy
# Backup files created by Bash
*~

# Sphinx documentation
docs/_build/
# Bash execution output files
*.out
*.bak
*.swp

# PyBuilder
target/
# GitHub Actions
.github/workflows/*.log
.github/actions/*.log

# Jupyter Notebook
.ipynb_checkpoints
# GitHub Actions cache
.github/actions/cache

# IPython
profile_default/
ipython_config.py
# VS Code workspace settings
.vscode/
.vscode/settings.json
.vscode/tasks.json
.vscode/launch.json
.vscode/extensions.json

# pyenv
.python-version
# VS Code extensions directories
.vscode-test/
.vscode-extensions/

# 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
# node modules
node_modules/

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# environment vars
.env
.env.local
.env.production
.env.test

# Celery stuff
celerybeat-schedule
celerybeat.pid
# Compiled code or temporary files
*.pyc
*.class
*.o

# SageMath parsed files
*.sage.py
# Build output and distribution directories
dist/
build/

# 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/
# 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

# Local .terraform directories
**/.terraform/*

# .tfstate files
*.tfstate
*.tfstate.*
# Crash log files
crash.log
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
# .tfvars files are managed as part of configuration and so should be included in
# version control.
#
# example.tfvars
# Ignore override files as they are usually used to override resources locally and so
# are not checked in
override.tf
override.tf.json
*_override.tf
*_override.tf.json
Loading