Compare commits

...

3 Commits

Author SHA1 Message Date
Logan Markewich 790a470136 fix tests 2024-05-29 18:14:00 -06:00
Logan Markewich 3513c47505 linting 2024-05-29 18:05:03 -06:00
Pierre-Loic Doulcet e91f1940ec Add spreadsheet extensions 2024-05-29 15:41:07 -07:00
3 changed files with 2811 additions and 2925 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ repos:
args:
[
"--ignore-words-list",
"astroid,gallary,momento,narl,ot,rouge,nin,gere,te,inh",
"astroid,gallary,momento,narl,ot,rouge,nin,gere,te,inh,vor",
]
- repo: https://github.com/srstevenson/nb-clean
rev: 3.1.0
File diff suppressed because one or more lines are too long
+72 -38
View File
@@ -101,59 +101,93 @@ class Language(str, Enum):
SUPPORTED_FILE_TYPES = [
".pdf",
# Microsoft word - all versions
# document and presentations
".602",
".abw",
".cgm",
".cwk",
".doc",
".docx",
".docm",
".dot",
".dotx",
".dotm",
# Rich text format
".hwp",
".key",
".lwp",
".mw",
".mcw",
".pages",
".pbd",
".ppt",
".pptm",
".pptx",
".pot",
".potm",
".potx",
".rtf",
# Microsoft Works
".wps",
# Word Perfect
".wpd",
# Open Office
".sda",
".sdd",
".sdp",
".sdw",
".sgl",
".sti",
".sxi",
".sxw",
".stw",
".sxg",
# Apple
".pages",
# Mac Write
".mw",
".mcw",
# Unified Office Format text
".uot",
".txt",
".uof",
".uos",
".uop",
# Microsoft powerpoints
".ppt",
".pptx",
".pot",
".pptm",
".potx",
".potm",
# Apple keynote
".key",
# Open Office Presentations
".odp",
".odg",
".otp",
".fopd",
".sxi",
".sti",
# ebook
".uot",
".vor",
".wpd",
".wps",
".xml",
".zabw",
".epub",
# html
".html",
".htm",
# media,
# images
".jpg",
".jpeg",
".png",
".tiff",
".gif",
".bmp",
".svg",
".tiff",
".webp",
# web
".htm",
".html",
# spreadsheets
".xlsx",
".xls",
".xlsm",
".xlsb",
".xlw",
".csv",
".dif",
".sylk",
".slk",
".prn",
".numbers",
".et",
".ods",
".fods",
".uos1",
".uos2",
".dbf",
".wk1",
".wk2",
".wk3",
".wk4",
".wks",
".123",
".wq1",
".wq2",
".wb1",
".wb2",
".wb3",
".qpw",
".xlr",
".eth",
".tsv",
]