2020-03-19 16:31:29 +00:00
|
|
|
// Code generated by github.com/go-enry/go-enry/v2/internal/code-generator DO NOT EDIT.
|
2021-09-25 16:42:06 +00:00
|
|
|
// Extracted from github/linguist commit: cdf42b16b136fc7f0a491d36c415f34fcfb9368a
|
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?/`),
|
|
|
|
}
|