Skip to content

Commit

Permalink
prettier --write
Browse files Browse the repository at this point in the history
  • Loading branch information
rwblair committed Oct 26, 2021
1 parent e7f2d93 commit d0ac101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bids-validator/src/schemaTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export async function generateRegex(schema, pythonRegex = false) {
}
const suffix_regex = `_(?${P}<suffix>${datatype.suffixes.join('|')})`
// Workaround v1.6.0 MEG extension "*"
const wildcard_extensions = datatype.extensions.map((ext) => {
const wildcard_extensions = datatype.extensions.map(ext => {
if (ext === '*') {
return '.*?'
} else if (ext.includes('/')) {
Expand Down

0 comments on commit d0ac101

Please sign in to comment.