mirror of
https://github.com/charmbracelet/glow.git
synced 2026-08-09 09:49:09 +02:00
12 lines
162 B
Go
12 lines
162 B
Go
//go:build !darwin
|
|
// +build !darwin
|
|
|
|
package ui
|
|
|
|
func ignorePatterns(m model) []string {
|
|
return []string{
|
|
m.common.cfg.Gopath,
|
|
"node_modules",
|
|
".*",
|
|
}
|
|
}
|