mirror of
https://github.com/charmbracelet/glow
synced 2024-11-10 06:04:18 +00:00
fce3edf7db
* feat!: cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * more cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: more cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: more cleanup --------- Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
12 lines
161 B
Go
12 lines
161 B
Go
//go:build !darwin
|
|
// +build !darwin
|
|
|
|
package ui
|
|
|
|
func ignorePatterns(m commonModel) []string {
|
|
return []string{
|
|
m.cfg.Gopath,
|
|
"node_modules",
|
|
".*",
|
|
}
|
|
}
|