File size: 279 Bytes
2c17839 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # ignore all by default
*
# explicitly allow certain code files, build files config files, and documentation
!*.py
!atlassian/**.py
!docs/**.py
!**.md
!**.rst
!*.txt
!*.cfg
!**/requirements.txt
# explicitly allow tests
!doc/examples
!tests
# always ignore these files
**/*.pyc |