.propelignore files to exclude files from Propel’s code review.
Quick start
Create a.propelignore file in your repository root:
.propelignore
Pattern syntax
.propelignore uses the same syntax as .gitignore.
Directory-scoped rules
You can place.propelignore files in subdirectories to apply rules only inside that directory.
- Root
.propelignore: applies to the entire repo. frontend/.propelignore: only applies insidefrontend/.backend/.propelignore: only applies insidebackend/.
frontend/.propelignore with **/*.test.tsx only skips test files inside frontend/.
Common patterns
Test files
Generated code
Dependencies
Documentation
Large files
Important notes
- Main branch only: Propel reads
.propelignorefrom yourmainormasterbranch, not from the PR branch. - Hierarchical: Deeper
.propelignorefiles add rules but do not override parent rules. - Transparent: Skipped files are always shown in the review summary.