Configure your repository to exclude sensitive or unnecessary files from PlayerZero’s analysis.
.pzignore
file is placed in the root directory of your repository to exclude specific files or folders from PlayerZero’s code ingestion process. This works similarly to a .gitignore
file, allowing you to specify patterns of files that PlayerZero should ignore. Since .pzignore
is derived from .gitignore
, you don’t need to duplicate exclusions already covered by .gitignore
.
.pzignore
?.pzignore
.pzignore
.
.pzignore
represents a pattern for files or directories PlayerZero should skip. Patterns can use wildcards (e.g., *.pem
) or relative paths (e.g., dist/
).
.pzignore
to your repository. PlayerZero will automatically detect and honor these patterns on subsequent ingestions.
.pzignore
File.pzignore
file that demonstrates common exclusions. Customize and expand this file to meet your specific needs.
.pzignore
ensures that only relevant code is analyzed, enhancing security and performance in your development workflow.