Run Prettier (npx prettier --write .)

This commit is contained in:
Dr. Derek Austin
2021-05-10 17:07:13 -05:00
parent 55f3d824e4
commit 67acb0c494
2 changed files with 4 additions and 2 deletions

View File

@ -28,7 +28,7 @@ export function getFiles(type) {
const prefixPaths = path.join(root, 'data', type)
const files = getAllFilesRecursively(prefixPaths)
// Only want to return blog/path and ignore root
return files.map(file => file.slice(prefixPaths.length + 1))
return files.map((file) => file.slice(prefixPaths.length + 1))
}
export function formatSlug(slug) {