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

Cleanup gitignore files #250

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
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
10 changes: 9 additions & 1 deletion astro-airflow-iris/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@ data/**
!.gitkeep

# also keep the example dataset
!data/01_raw/*.csv
!data/01_raw/iris.csv

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -149,3 +154,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
11 changes: 9 additions & 2 deletions databricks-iris/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@ data/**
!.gitkeep

# also keep the example dataset
!data/01_raw/*.csv
!data/01_raw/iris.csv

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -137,7 +142,6 @@ celerybeat-schedule

# Environments
.env
.envrc
.venv
env/
venv/
Expand All @@ -150,3 +154,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
14 changes: 12 additions & 2 deletions spaceflights-pandas-viz/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ data/**
# also keep all .gitkeep files
!.gitkeep

# keep also the example dataset
!data/01_raw/*
# also keep the example dataset
!data/01_raw/companies.csv
!data/01_raw/reviews.csv
!data/01_raw/shuttles.xlsx

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -149,3 +156,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
14 changes: 12 additions & 2 deletions spaceflights-pandas/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ data/**
# also keep all .gitkeep files
!.gitkeep

# keep also the example dataset
!data/01_raw/*
# also keep the example dataset
!data/01_raw/companies.csv
!data/01_raw/reviews.csv
!data/01_raw/shuttles.xlsx

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -149,3 +156,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
14 changes: 12 additions & 2 deletions spaceflights-pyspark-viz/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ data/**
# also keep all .gitkeep files
!.gitkeep

# keep also the example dataset
!data/01_raw/*
# also keep the example dataset
!data/01_raw/companies.csv
!data/01_raw/reviews.csv
!data/01_raw/shuttles.xlsx

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -149,3 +156,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
14 changes: 12 additions & 2 deletions spaceflights-pyspark/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ data/**
# also keep all .gitkeep files
!.gitkeep

# keep also the example dataset
!data/01_raw/*
# also keep the example dataset
!data/01_raw/companies.csv
!data/01_raw/reviews.csv
!data/01_raw/shuttles.xlsx

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -149,3 +156,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
Loading