You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

documentation.go 981B

1234567891011121314151617181920212223242526
  1. // Code generated by github.com/go-enry/go-enry/v2/internal/code-generator DO NOT EDIT.
  2. // Extracted from github/linguist commit: 40992ba7f86889f80dfed3ba95e11e1082200bad
  3. package data
  4. import "github.com/go-enry/go-enry/v2/regex"
  5. var DocumentationMatchers = []regex.EnryRegexp{
  6. regex.MustCompile(`^[Dd]ocs?/`),
  7. regex.MustCompile(`(^|/)[Dd]ocumentation/`),
  8. regex.MustCompile(`(^|/)[Gg]roovydoc/`),
  9. regex.MustCompile(`(^|/)[Jj]avadoc/`),
  10. regex.MustCompile(`^[Mm]an/`),
  11. regex.MustCompile(`^[Ee]xamples/`),
  12. regex.MustCompile(`^[Dd]emos?/`),
  13. regex.MustCompile(`(^|/)inst/doc/`),
  14. regex.MustCompile(`(^|/)CHANGE(S|LOG)?(\.|$)`),
  15. regex.MustCompile(`(^|/)CONTRIBUTING(\.|$)`),
  16. regex.MustCompile(`(^|/)COPYING(\.|$)`),
  17. regex.MustCompile(`(^|/)INSTALL(\.|$)`),
  18. regex.MustCompile(`(^|/)LICEN[CS]E(\.|$)`),
  19. regex.MustCompile(`(^|/)[Ll]icen[cs]e(\.|$)`),
  20. regex.MustCompile(`(^|/)README(\.|$)`),
  21. regex.MustCompile(`(^|/)[Rr]eadme(\.|$)`),
  22. regex.MustCompile(`^[Ss]amples?/`),
  23. }