1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
# Files and directories not to track in git tree
# Global files for the entire tree
*.swp
*~
*.pyc
# Build files
rpmbuild
container_build/
build/
# Ignore docs generated API sources
docs/api/
# Ignore workflow artifacts
.tox/
ext/
__pycache__/
# Ignore docs tmp directories
docs/Developer_Guide/tmp
docs/SCAP_and_STIG_Workshop/tmp
docs/User_Guide/tmp
# Ignore docs publish directories
docs/Developer_Guide/publish
docs/SCAP_and_STIG_Workshop/publish
docs/User_Guide/publish
# Ignore docs SCAP_Security_Guide directory
docs/html/en-US/SCAP_Security_Guide
# Ignore PCI_DSS_v3-1.pdf
shared/transforms/pcidss/PCI_DSS_v3-1.pdf
# Ignore zipfile and tarball dirs
zipfile/
tarball/
# Ignore QtCreator files
CMakeLists.txt.user
# Ignore VIM's ropeproject files
.ropeproject
# Ignore pytest cache
.pytest_cache/
# Ignore Visual Studio Code configuration files
.vscode/
# Ignore IntelliJ Idea configuration files
.idea/
# Ignore release tools data file
release_tools/.env
release_tools/.jenkins_builds
release_tools/*.log
release_tools/release_notes.txt
release_tools/artifacts
# Ignore the test profile that utils/add_kubernetes_rule.py creates
ocp4/profiles/test.profile
# Ignore the build profiling files
.build_profiling/*
# Ignore .ssh folder that is used by gitpod integration to store
# keys used for automatus backends
.ssh
# Ignore MyPy Cache
.mypy_cache/
# Ignore build profiling data
.build_profiling/
# Ignore coverage files
.coverage
coverage.xml
# Trestle specfic
shared/references/oscal/.trestle/cache
|