(config: &Config, template_config: &TemplateConfig)
| 392 | } |
| 393 | |
| 394 | fn build_ignore_files(config: &Config, template_config: &TemplateConfig) -> Vec<PathBuf> { |
| 395 | let mut ignore_files = template_config.ignore_files.clone(); |
| 396 | ignore_files.extend(config.ignore_file.clone().unwrap_or_default()); |
| 397 | ignore_files |
| 398 | } |
| 399 | |
| 400 | fn should_render_file( |
| 401 | relative: &Path, |