mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
Fix the directory ignore patterns to ignore the entire directories, including child directories. https://git-scm.com/docs/gitignore#_pattern_format Co-authored-by: Ofek Lev <ofekmeister@gmail.com> Signed-off-by: Joshua Lock <jlock@vmware.com>
33 lines
387 B
Text
33 lines
387 B
Text
# root level directories
|
|
dist/
|
|
build/
|
|
env/
|
|
|
|
# docs build directory
|
|
docs/build/
|
|
|
|
# global file patterns
|
|
*.log
|
|
*.pyc
|
|
*.session
|
|
*.swo
|
|
*.swp
|
|
*.egg-info
|
|
.coverage
|
|
.tox/
|
|
tests/htmlcov/
|
|
.DS_Store
|
|
.pybuild/
|
|
.python-version
|
|
*~
|
|
*.tmp
|
|
.pre-commit-config.yaml
|
|
.vscode
|
|
|
|
# Debian generated files
|
|
debian/.debhelper/
|
|
debian/*-stamp
|
|
debian/files
|
|
debian/*.debhelper
|
|
debian/*.substvars
|
|
debian/python*-tuf/
|