Skip to content

Commit bf61f53

Browse files
committed
lint
1 parent 52301f3 commit bf61f53

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

middleware/contextualizers/early-access-links.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = function earlyAccessContext (req, res, next) {
2121
// This is only used in the separate EA repo on local development
2222
req.context.earlyAccessPageLinks = earlyAccessPageLinks.length
2323
? earlyAccessPageLinks.join('\n')
24-
: `_None for this version!_`
24+
: '_None for this version!_'
2525

2626
return next()
2727
}

script/early-access/update-data-and-image-paths.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const earlyAccessImages = path.posix.join(process.cwd(), 'assets/images/early-ac
2020

2121
program
2222
.description('Update data and image paths.')
23-
.option('-p, --path-to-early-access-content-file <PATH>', `Path to a specific content file. Defaults to all Early Access content files if not provided.`)
23+
.option('-p, --path-to-early-access-content-file <PATH>', 'Path to a specific content file. Defaults to all Early Access content files if not provided.')
2424
.option('-a, --add', 'Add "early-access" to data and image paths.')
2525
.option('-r, --remove', 'Remove "early-access" from data and image paths.')
2626
.parse(process.argv)
@@ -42,7 +42,7 @@ if (program.pathToEarlyAccessContentFile) {
4242
} else {
4343
// Gather the EA content and data files
4444
earlyAccessContentAndDataFiles = walk(earlyAccessContent, { includeBasePath: true, directories: false })
45-
.concat(walk(earlyAccessData, { includeBasePath: true, directories: false }))
45+
.concat(walk(earlyAccessData, { includeBasePath: true, directories: false }))
4646
}
4747

4848
// Update the EA content and data files

0 commit comments

Comments
 (0)