https://kedro.org/ logo
Title
w

waylonwalker

08/11/2021, 2:04 PM
A potential issue with
kedro-diff
is, if you have large files in your project that are not required for making the pipeline objects it can fill up your tmp directory. I think the solution is to implement a .kedroignore, that will ignore certain files and directories specified by the user. If one does not exist, I will ignore the following items by default.
python
  default_ignore_items = [".envrc", ".venv", ".kedro-diff", "data"]
What else belongs in the default ignore? are there large files stored in common directories that we dont need while running diff?