.feastignore
Overview
# Ignore virtual environment
venv
# Ignore a specific Python file
scripts/foo.py
# Ignore all Python files directly under scripts directory
scripts/*.py
# Ignore all "foo.py" anywhere under scripts directory
scripts/**/foo.pyFeast Ignore Patterns
Pattern
Example matches
Explanation
Was this helpful?