
# - Forbid all

**/*.*

# - Allow subdirectories with a dot

!**/*.*/

# forbid .venv
.venv

# - Allow dot files

!.gitignore
!.python-version
!.secrets.baseline

# - Allow file extensions

!*.lock
!*.py
!*.toml
!*.template
!*.sh
!*.yaml

