Fix ignore patterns
This commit is contained in:
parent
287a4e15b4
commit
b17f34d402
4 changed files with 30 additions and 2 deletions
|
|
@ -26,7 +26,9 @@ export class ObsidianFileSystemOperations implements FileSystemOperations {
|
|||
break;
|
||||
}
|
||||
|
||||
if (folder.includes(".obsidian")) {
|
||||
// This would be a very bad idea to sync as it would mess with
|
||||
// the integrity of the sync database.
|
||||
if (folder.endsWith(".obsidian/plugins/vault-link/data.json")) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ export default class VaultLinkPlugin extends Plugin {
|
|||
>();
|
||||
|
||||
public async onload(): Promise<void> {
|
||||
DEFAULT_SETTINGS.ignorePatterns.push(".obsidian", ".git");
|
||||
DEFAULT_SETTINGS.ignorePatterns.push(".obsidian/**", ".git/**");
|
||||
|
||||
this.client = await SyncClient.create({
|
||||
fs: new ObsidianFileSystemOperations(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue