-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from thushan/ignore-system-files
Adds ignoring of system files and folders.
- Loading branch information
Showing
7 changed files
with
151 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
package smash | ||
|
||
type Flags struct { | ||
OutputFile string `yaml:"output"` | ||
Base []string `yaml:"base"` | ||
ExcludeDir []string `yaml:"exclude-dir"` | ||
ExcludeFile []string `yaml:"exclude-file"` | ||
Algorithm int `yaml:"algorithm"` | ||
MaxThreads int `yaml:"max-threads"` | ||
MaxWorkers int `yaml:"max-workers"` | ||
UpdateSeconds int `yaml:"update-seconds"` | ||
DisableSlicing bool `yaml:"disable-slicing"` | ||
IgnoreEmptyFiles bool `yaml:"ignore-emptyfiles"` | ||
ShowVersion bool `yaml:"show-version"` | ||
Silent bool `yaml:"silent"` | ||
NoProgress bool `yaml:"no-progress"` | ||
Verbose bool `yaml:"verbose"` | ||
OutputFile string `yaml:"output"` | ||
Base []string `yaml:"base"` | ||
ExcludeDir []string `yaml:"exclude-dir"` | ||
ExcludeFile []string `yaml:"exclude-file"` | ||
Algorithm int `yaml:"algorithm"` | ||
MaxThreads int `yaml:"max-threads"` | ||
MaxWorkers int `yaml:"max-workers"` | ||
UpdateSeconds int `yaml:"update-seconds"` | ||
DisableSlicing bool `yaml:"disable-slicing"` | ||
IgnoreEmptyFiles bool `yaml:"ignore-emptyfiles"` | ||
IgnoreHiddenItems bool `yaml:"ignore-hiddenitems"` | ||
ShowVersion bool `yaml:"show-version"` | ||
Silent bool `yaml:"silent"` | ||
NoProgress bool `yaml:"no-progress"` | ||
Verbose bool `yaml:"verbose"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters