2020-03-19 16:31:29 +00:00
|
|
|
// Code generated by github.com/go-enry/go-enry/v2/internal/code-generator DO NOT EDIT.
|
2022-10-06 08:23:21 +00:00
|
|
|
// Extracted from github/linguist commit: bf853f1c663903e3ee35935189760191f1c45e1c
|
2017-04-10 09:30:23 +00:00
|
|
|
|
2018-04-28 13:12:03 +00:00
|
|
|
package data
|
|
|
|
|
2020-04-15 15:27:48 +00:00
|
|
|
import "github.com/go-enry/go-enry/v2/regex"
|
2017-04-10 09:30:23 +00:00
|
|
|
|
2020-04-15 15:27:48 +00:00
|
|
|
var DocumentationMatchers = []regex.EnryRegexp{
|
|
|
|
regex.MustCompile(`^[Dd]ocs?/`),
|
|
|
|
regex.MustCompile(`(^|/)[Dd]ocumentation/`),
|
|
|
|
regex.MustCompile(`(^|/)[Gg]roovydoc/`),
|
|
|
|
regex.MustCompile(`(^|/)[Jj]avadoc/`),
|
|
|
|
regex.MustCompile(`^[Mm]an/`),
|
|
|
|
regex.MustCompile(`^[Ee]xamples/`),
|
|
|
|
regex.MustCompile(`^[Dd]emos?/`),
|
|
|
|
regex.MustCompile(`(^|/)inst/doc/`),
|
2021-11-14 16:36:04 +00:00
|
|
|
regex.MustCompile(`(^|/)CITATION(\.cff|(S)?(\.(bib|md))?)$`),
|
2020-04-15 15:27:48 +00:00
|
|
|
regex.MustCompile(`(^|/)CHANGE(S|LOG)?(\.|$)`),
|
|
|
|
regex.MustCompile(`(^|/)CONTRIBUTING(\.|$)`),
|
|
|
|
regex.MustCompile(`(^|/)COPYING(\.|$)`),
|
|
|
|
regex.MustCompile(`(^|/)INSTALL(\.|$)`),
|
|
|
|
regex.MustCompile(`(^|/)LICEN[CS]E(\.|$)`),
|
|
|
|
regex.MustCompile(`(^|/)[Ll]icen[cs]e(\.|$)`),
|
|
|
|
regex.MustCompile(`(^|/)README(\.|$)`),
|
|
|
|
regex.MustCompile(`(^|/)[Rr]eadme(\.|$)`),
|
|
|
|
regex.MustCompile(`^[Ss]amples?/`),
|
|
|
|
}
|