16 lines
234 B
Plaintext
16 lines
234 B
Plaintext
# Ignore everything
|
|
*
|
|
|
|
# Allow directories to be traversed
|
|
!*/
|
|
|
|
# Allow specific file types and root files
|
|
!*.py
|
|
!*.md
|
|
!*.png
|
|
|
|
!LICENSE
|
|
!pyproject.toml
|
|
!.github/ISSUE_TEMPLATE/*
|
|
!.github/workflows/lint.yml
|
|
!.github/workflows/tests.yml |