18 lines
235 B
Text
18 lines
235 B
Text
# Ignore pycache
|
|
__pycache__
|
|
|
|
# Ignore .hidden files
|
|
.*
|
|
|
|
# Except .
|
|
!.github/
|
|
!.gitignore
|
|
|
|
# Ignore items in test (report, cache, etc), except files starting with test
|
|
tests/*
|
|
!tests/test*
|
|
|
|
# Ignore logs/data/certs
|
|
logs/
|
|
data/
|
|
certs/
|