mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	* Implementation for calculating language statistics Impement saving code language statistics to database Implement rendering langauge stats Add primary laguage to show in repository list Implement repository stats indexer queue Add indexer test Refactor to use queue module * Do not timeout for queues
		
			
				
	
	
		
			27 lines
		
	
	
		
			949 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			949 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by github.com/src-d/enry/v2/internal/code-generator DO NOT EDIT.
 | |
| // Extracted from github/linguist commit: 3a1bd3c3d3e741a8aaec4704f782e06f5cd2a00d
 | |
| 
 | |
| package data
 | |
| 
 | |
| import "gopkg.in/toqueteos/substring.v1"
 | |
| 
 | |
| var DocumentationMatchers = substring.Or(
 | |
| 	substring.Regexp(`^[Dd]ocs?/`),
 | |
| 	substring.Regexp(`(^|/)[Dd]ocumentation/`),
 | |
| 	substring.Regexp(`(^|/)[Gg]roovydoc/`),
 | |
| 	substring.Regexp(`(^|/)[Jj]avadoc/`),
 | |
| 	substring.Regexp(`^[Mm]an/`),
 | |
| 	substring.Regexp(`^[Ee]xamples/`),
 | |
| 	substring.Regexp(`^[Dd]emos?/`),
 | |
| 	substring.Regexp(`(^|/)inst/doc/`),
 | |
| 	substring.Regexp(`(^|/)CHANGE(S|LOG)?(\.|$)`),
 | |
| 	substring.Regexp(`(^|/)CONTRIBUTING(\.|$)`),
 | |
| 	substring.Regexp(`(^|/)COPYING(\.|$)`),
 | |
| 	substring.Regexp(`(^|/)INSTALL(\.|$)`),
 | |
| 	substring.Regexp(`(^|/)LICEN[CS]E(\.|$)`),
 | |
| 	substring.Regexp(`(^|/)[Ll]icen[cs]e(\.|$)`),
 | |
| 	substring.Regexp(`(^|/)README(\.|$)`),
 | |
| 	substring.Regexp(`(^|/)[Rr]eadme(\.|$)`),
 | |
| 	substring.Regexp(`^[Ss]amples?/`),
 | |
| )
 |