update disclaimer and ignored list

This commit is contained in:
SowinskiBraeden committed 2025-05-05 13:05:17 -07:00
1 parent ef99e75273
commit 594774e20e
2 files changed
+5 -3

No files matched your search

+3 -1
View File
@@ -15,6 +15,8 @@ IGNORED: List[str] = [
"package-lock.json", "package-lock.json",
"/@", "/@",
"eslint-plugin", "eslint-plugin",
".yy",
"Ladder2800.js", # BBY06 - Auto generated code detected. please dont rename this file at all.
"...", # It is possible someone has so many sub folders and such a long file name it gets ignored "...", # It is possible someone has so many sub folders and such a long file name it gets ignored
] # git log --stat kinda sucks that it doesnt always show the full folder path ] # git log --stat kinda sucks that it doesnt always show the full folder path
@@ -116,7 +118,7 @@ async def getInsights(repoURL: str, teamID: str) -> Dict[str, str|List]:
offset += 1 offset += 1
continue continue
if "Bin 0 -> " in lines[offset]: if "Bin" in lines[offset] and "bytes" in lines[offset] and "->" in lines[offset]:
offset += 1 offset += 1
continue continue
+2 -2
View File
@@ -11,10 +11,10 @@
<h3>See Leaderboards</h3> <h3>See Leaderboards</h3>
<p> <p>
Disclaimer: This reads commits from git log and may not match Disclaimer: This reads commits from git log and may not match
commits from Github insights. commits from Github insights. It only reads from MAIN branch.
</p> </p>
<p> <p>
Additionally, any commits made through the Github web interface are ignored. Any commits made through the Github web interface are ignored.
</p> </p>
<p> <p>
Files with matching patterns may be ignored in your commits. E.g. node_module files. Files with matching patterns may be ignored in your commits. E.g. node_module files.