Add simple glob ignore patterns
This commit is contained in:
parent
bbb2adce63
commit
ceb217cda8
8 changed files with 95 additions and 8 deletions
|
|
@ -7,15 +7,17 @@ export interface SyncSettings {
|
|||
syncConcurrency: number;
|
||||
isSyncEnabled: boolean;
|
||||
maxFileSizeMB: number;
|
||||
ignorePatterns: string[];
|
||||
}
|
||||
|
||||
const DEFAULT_SETTINGS: SyncSettings = {
|
||||
export const DEFAULT_SETTINGS: SyncSettings = {
|
||||
remoteUri: "",
|
||||
token: "",
|
||||
vaultName: "default",
|
||||
syncConcurrency: 1,
|
||||
isSyncEnabled: false,
|
||||
maxFileSizeMB: 10
|
||||
maxFileSizeMB: 10,
|
||||
ignorePatterns: []
|
||||
};
|
||||
|
||||
export class Settings {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue