Skip to content

Commit

Permalink
fix: update gitignore for doc files
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Dec 9, 2021
1 parent 2c37bc4 commit 5c3b327
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions package_template/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ dmypy.json

# ----------------------------------------------------------------------------------------------------------------------
# Common Rules

# General
.r*
.vscode/*
*.csv
*.doc*
Expand All @@ -156,6 +159,7 @@ dmypy.json
# SQLite DB files (Note: use *.dvc to check these into git)
*.db
*.sqlite
*.sqlite-journal

# Other Python
*.whl
Expand All @@ -167,6 +171,9 @@ setup.py
**/cov_html/
coverage.json

# Other Custom Pytest
/tests/_tmp_cache/**

# Static Type Checkers
.pytype/*

Expand All @@ -179,12 +186,17 @@ coverage.json
# Built Outputs
/releases/

# Other Calcipy Ignores
/tests/_tmp_cache

# Ignore auto-created files by documentation tasks
/{{ doc_dir }}/docs/modules/*.md
/{{ doc_dir }}/docs/modules/**/*.md
/{{ doc_dir }}/modules/*.md
/{{ doc_dir }}/modules/**/*.md

# Allow List
!/{{ doc_dir }}/*.*
!supporting/**
!tests/data/**

# Ensure *.pyc files are still ignored even if in tests/data directory
*.pyc

# ----------------------------------------------------------------------------------------------------------------------
# Custom Rules

0 comments on commit 5c3b327

Please sign in to comment.