2020-03-19 16:31:29 +00:00
|
|
|
// Code generated by github.com/go-enry/go-enry/v2/internal/code-generator DO NOT EDIT.
|
2020-09-17 07:33:08 +00:00
|
|
|
// Extracted from github/linguist commit: 61fc3f06a3ee2f6b530873b6c01b10c37f5209fc
|
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/`),
|
|
|
|
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?/`),
|
|
|
|
}
|