mirror of
https://github.com/charmbracelet/glow
synced 2024-11-10 06:04:18 +00:00
11 lines
143 B
Go
11 lines
143 B
Go
// +build !darwin
|
|
|
|
package ui
|
|
|
|
func ignorePatterns(m model) []string {
|
|
return []string{
|
|
m.common.cfg.Gopath,
|
|
"node_modules",
|
|
".*",
|
|
}
|
|
}
|