Skip to content

Commit

Permalink
Use Github template for gitignore (#7)
Browse files Browse the repository at this point in the history
* Use Github template for gitignore
  • Loading branch information
pankajastro authored Jun 18, 2024
1 parent 9e931c7 commit 8be3653
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 15 deletions.
91 changes: 76 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,76 @@
.DS_Store
logs/
anyscale_provider/.DS_Store
anyscale_provider/example_dags/.DS_Store
anyscale_provider/example_dags/ray_scripts/.DS_Store
anyscale_provider/example_dags/logs
anyscale_provider/__pycache__
anyscale_provider/hooks/__pycache__
anyscale_provider/operators/__pycache__
anyscale_provider/triggers/__pycache__
tests/__pycache__
tests/dags/__pycache__
tests/hooks/__pycache__
tests/operators/__pycache__
tests/triggers/__pycache__
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
.ruff_cache

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

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

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# pytype static type analyzer
.pytype/

# Pycham
.idea/
Binary file not shown.
Binary file not shown.

0 comments on commit 8be3653

Please sign in to comment.