(settings: TaskNotesSettings)
| 712 | } |
| 713 | |
| 714 | updateConfig(settings: TaskNotesSettings): void { |
| 715 | this.settings = settings; |
| 716 | this.excludedFolders = parseExcludedFolders(settings.excludedFolders); |
| 717 | this.clearIndexes(); |
| 718 | this.indexesBuilt = false; |
| 719 | } |
| 720 | |
| 721 | private isValidFile(path: string): boolean { |
| 722 | return !isPathInExcludedFolder(path, this.excludedFolders); |
nothing calls this directly
no test coverage detected