Skip to content

Commit 1fa9b90

Browse files
authored
refactor: ♻️ .gitignore should be specific to data packages, not Python ones (#75)
# Description Remove Python packaging specific ignore files and added data package specific ones. Not sure how the Git LFS will work with this, so it might need changing, especially related to the Parquet files. This PR needs a quick review.
1 parent da4da4d commit 1fa9b90

File tree

1 file changed

+6
-39
lines changed

1 file changed

+6
-39
lines changed

template/.gitignore

Lines changed: 6 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -26,40 +26,12 @@ venv
2626
__pycache__/
2727
*.py[cod]
2828

29-
# Python packaging and distribution
30-
.Python
31-
build/
32-
develop-eggs/
33-
dist/
34-
downloads/
35-
eggs/
36-
.eggs/
37-
lib/
38-
lib64/
39-
parts/
40-
sdist/
41-
var/
42-
wheels/
43-
share/python-wheels/
44-
*.egg-info/
45-
.installed.cfg
46-
*.egg
47-
MANIFEST
48-
49-
# Python testing and code coverage
50-
htmlcov/
51-
.tox/
52-
.nox/
53-
.coverage
54-
.coverage.*
55-
.cache
56-
nosetests.xml
57-
coverage.xml
58-
*.cover
59-
*.py,cover
60-
.hypothesis/
61-
.pytest_cache/
62-
cover/
29+
# Raw data files and folders
30+
*.parquet
31+
*.csv
32+
/data-raw/
33+
/raw/
34+
/data/
6335

6436
# MacOS
6537
.DS_Store
@@ -71,16 +43,11 @@ docs/.quarto/
7143
*.quarto_ipynb
7244
*.storage
7345

74-
# Quartodoc
75-
/docs/reference/
76-
objects.json
77-
7846
# Website generation
7947
_site
8048
_book
8149
public
8250
site
8351

84-
8552
# Misc files
8653
*.log

0 commit comments

Comments
 (0)