From 9708ae0741480c78656a8b137a25591eb5ab87b6 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Fri, 18 Jun 2021 08:00:08 -0500 Subject: [PATCH] pull ignores from kedro --- .gitignore | 160 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 159 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index eef71ff..783861f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,163 @@ - +## proejct specific ignore data venv .envrc site/*.json + +# CMake +cmake-build-debug/ + +## File-based project format: +*.iws + +## Plugin-specific files: + +# IntelliJ +.idea/ +*.iml +out/ + +### macOS +*.DS_Store +.AppleDouble +.LSOverride +.Trashes + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties +### Python template +# 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/ +pip-wheel-metadata/ +*.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/ +.coverage +.coverage.* +.cache +nosetests.xml +test-output.xml +coverage.xml +*.cover +.hypothesis/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +.static_storage/ +.media/ +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ +.cenv + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site +/kedro/framework/html + +# mypy +.mypy_cache/ + +# Visual Studio Code +.vscode/ +# end to end tests assets +kedro.db + +# Vim +*~ +.*.swo +.*.swp + +.pytest_cache/ +kedro/html +docs/tmp-build-artifacts +docs/build +docs/node_modules +docs/source/04_user_guide/source/.ipynb +tests/template/fake_project/ + +default.profraw