Skip to content

Commit 58d54ce

Browse files
committed
Add stylized file types
1 parent 03dfcd1 commit 58d54ce

File tree

1 file changed

+36
-26
lines changed

1 file changed

+36
-26
lines changed

bootstrap.sample.json

Lines changed: 36 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -27,32 +27,42 @@
2727
}
2828
],
2929
"filetypes": [
30-
{ "_id": "bval", "regex": "\\.(bval|bvals)$" },
31-
{ "_id": "bvec", "regex": "\\.(bvec|bvecs)$" },
32-
{ "_id": "dicom", "regex": "\\.(dcm|dcm\\.zip|dicom\\.zip)$" },
33-
{ "_id": "eeg", "regex": "\\.eeg\\.zip$" },
34-
{ "_id": "gephysio", "regex": "\\.gephysio\\.zip$" },
35-
{ "_id": "ismrmrd", "regex": "\\.(h5|hdf5)$" },
36-
{ "_id": "MATLAB data", "regex": "\\.mat$" },
37-
{ "_id": "MGH data", "regex": "\\.(mgh|mgz|mgh\\.gz)$" },
38-
{ "_id": "nifti", "regex": "\\.(nii\\.gz|nii)$" },
39-
{ "_id": "parrec", "regex": "\\.(parrec\\.zip|par-rec\\.zip)$" },
40-
{ "_id": "pfile", "regex": "\\.(7\\.gz|7|7\\.zip)$" },
41-
{ "_id": "PsychoPy data", "regex": "\\.psydat$" },
42-
{ "_id": "qa", "regex": "\\.(qa\\.png|qa\\.json|qa\\.html)$" },
30+
{ "_id": "BVAL", "regex": "\\.(bval|bvals)$" },
31+
{ "_id": "BVEC", "regex": "\\.(bvec|bvecs)$" },
32+
{ "_id": "DICOM", "regex": "\\.(dcm|dcm\\.zip|dicom\\.zip)$" },
33+
{ "_id": "EFile", "regex": "^E.*P.*\\.7$" },
34+
{ "_id": "GE Physio", "regex": "\\.gephysio\\.zip$" },
35+
{ "_id": "MGH Data", "regex": "\\.(mgh|mgz|mgh\\.gz)$" },
36+
{ "_id": "NIfTI", "regex": "\\.(nii\\.gz|nii)$" },
37+
{ "_id": "PAR/REC", "regex": "\\.(parrec\\.zip|par-rec\\.zip)$" },
38+
{ "_id": "PFile Header", "regex": "\\.(7\\.hdr)$" },
39+
{ "_id": "PFile", "regex": "\\.(7\\.gz|7|7\\.zip)$" },
4340

44-
{ "_id": "archive", "regex": "\\.(zip|tbz2|tar\\.gz|tbz|tar\\.bz2|tgz|tar|txz|tar\\.xz)$" },
45-
{ "_id": "document", "regex": "\\.(docx|doc)$" },
46-
{ "_id": "image", "regex": "\\.(jpg|tif|jpeg|gif|bmp|png|tiff)$" },
47-
{ "_id": "markup", "regex": "\\.(html|htm|xml)$" },
48-
{ "_id": "markdown", "regex": "\\.(md|markdown)$" },
49-
{ "_id": "log", "regex": "\\.log$" },
50-
{ "_id": "pdf", "regex": "\\.pdf$" },
51-
{ "_id": "presentation", "regex": "\\.(ppt|pptx)$" },
52-
{ "_id": "source code", "regex": "\\.(c|py|cpp|js|m|json|java|php|css|toml|yaml|yml)$" },
53-
{ "_id": "spreadsheet", "regex": "\\.(xls|xlsx)$" },
54-
{ "_id": "tabular data", "regex": "\\.(csv\\.gz|csv)$" },
55-
{ "_id": "text", "regex": "\\.txt$" },
56-
{ "_id": "video", "regex": "\\.(mpeg|mpg|mov|mp4|m4v|mts)$" }
41+
{ "_id": "EEG", "regex": "\\.eeg\\.zip$" },
42+
43+
{ "_id": "QC", "regex": "\\.(q[ac]\\.png|q[ac]\\.json|q[ac]\\.html)$" },
44+
45+
{ "_id": "MATLAB Data", "regex": "\\.mat$" },
46+
{ "_id": "PsychoPy Data", "regex": "\\.psydat$" },
47+
48+
{ "_id": "Archive", "regex": "\\.(zip|tbz2|tar\\.gz|tbz|tar\\.bz2|tgz|tar|txz|tar\\.xz)$" },
49+
{ "_id": "Audio", "regex": "\\.(mp3|wav|wave)$" },
50+
{ "_id": "Document", "regex": "\\.(docx|doc)$" },
51+
{ "_id": "HDF5", "regex": "\\.(h5|hdf5)$" },
52+
{ "_id": "Image", "regex": "\\.(jpg|tif|jpeg|gif|bmp|png|tiff)$" },
53+
{ "_id": "JSON", "regex": "\\.json$" },
54+
{ "_id": "Log", "regex": "\\.log$" },
55+
{ "_id": "Markdown", "regex": "\\.(md|markdown)$" },
56+
{ "_id": "Markup", "regex": "\\.(html|htm)$" },
57+
{ "_id": "PDF", "regex": "\\.pdf$" },
58+
{ "_id": "Plain Text", "regex": "\\.txt$" },
59+
{ "_id": "Presentation", "regex": "\\.(ppt|pptx)$" },
60+
{ "_id": "Source code", "regex": "\\.(c|py|cpp|js|m|json|java|php|css|toml|yaml|yml)$" },
61+
{ "_id": "Spreadsheet", "regex": "\\.(xls|xlsx)$" },
62+
{ "_id": "TOML", "regex": "\\.toml$" },
63+
{ "_id": "Tabular data", "regex": "\\.([ct]sv\\.gz|[ct]sv)$" },
64+
{ "_id": "Video", "regex": "\\.(mpeg|mpg|mov|mp4|m4v|mts)$" },
65+
{ "_id": "XML", "regex": "\\.xml$" },
66+
{ "_id": "YAML", "regex": "\\.(yaml|yml)$" }
5767
]
5868
}

0 commit comments

Comments
 (0)