# Note: This is restrictive but it might be possible
# to compartmentalize some specific ignores in (subfolders/workdirs)
# by using a .gitignore there

# First, ignore everything
*
# Now, whitelist anything that's a directory
!*/
# And all the file types you're interested in.
# don't ignore gitignore, hah
!.gitignore
# scripts and progs
!*.py
# doc
!*.md
# config
!*.ini
!*.toml
!*.yaml
!*.yml
!*.lock
