diff options
author | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-22 21:13:49 +0530 |
---|---|---|
committer | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-22 21:13:49 +0530 |
commit | f661e6e4ce1177352b5bc40238351920cc25a69b (patch) | |
tree | 602979b0ef6f931206686d435aa1aff93c5a6a57 /config | |
parent | 2b57b6e0b1b936f45aa4ed8fd0ed2f57b7d370f3 (diff) | |
download | legit-f661e6e4ce1177352b5bc40238351920cc25a69b.tar.gz legit-f661e6e4ce1177352b5bc40238351920cc25a69b.tar.bz2 legit-f661e6e4ce1177352b5bc40238351920cc25a69b.zip |
config: add repo.ignore
Diffstat (limited to 'config')
-rw-r--r-- | config/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go index 8632af8..3119352 100644 --- a/config/config.go +++ b/config/config.go @@ -12,6 +12,7 @@ type Config struct { ScanPath string `yaml:"scanPath"` Readme []string `yaml:"readme"` MainBranch []string `yaml:"mainBranch"` + Ignore []string `yaml:"ignore,omitempty"` } `yaml:"repo"` Dirs struct { Templates string `yaml:"templates"` |