Skip to content

Commit

Permalink
Merge pull request #940 from consideRatio/pr/update-gitignore
Browse files Browse the repository at this point in the history
Clarify whats manually added in .gitignore
  • Loading branch information
consideRatio authored Jan 21, 2022
2 parents 5923dd1 + 0c1000a commit 97966a6
Showing 1 changed file with 31 additions and 8 deletions.
39 changes: 31 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@ Chart.lock

.env-*

# Documentation build assets
docs/tmp
docs/reference/terraform.md



# Python.gitignore below - Add exceptions above for easier maintenance
# https://github.com/github/gitignore/blob/main/Python.gitignore
# --------------------------------------------------------------------

# Byte-compiled / optimized / DLL files
__pycache__/
Expand All @@ -28,7 +36,6 @@ parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
Expand Down Expand Up @@ -58,6 +65,7 @@ coverage.xml
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
Expand All @@ -80,6 +88,7 @@ instance/
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
Expand All @@ -90,7 +99,9 @@ profile_default/
ipython_config.py

# pyenv
.python-version
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
Expand All @@ -99,6 +110,13 @@ ipython_config.py
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

Expand Down Expand Up @@ -136,10 +154,15 @@ dmypy.json
# Pyre type checker
.pyre/

# helm charts
hub/charts
support/charts
# pytype static type analyzer
.pytype/

# Documentation build assets
docs/tmp
docs/reference/terraform.md
# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

0 comments on commit 97966a6

Please sign in to comment.