fix: remove echo nothing

This commit is contained in:
httpjamesm 2023-04-29 12:19:13 -04:00
parent 2df2b312db
commit a51fb49fc1
No known key found for this signature in database

View file

@ -6,8 +6,7 @@ const buildEslintCommand = (filenames) =>
.join(' --file ')} --`;
const buildPrettierCommand = (filenames) =>
// `yarn prettier --write --ignore-unknown ${filenames.join(' ')}`;
`echo nothing`
`yarn prettier --write --ignore-unknown ${filenames.join(' ')}`;
module.exports = {
'apps/**/*.{js,jsx,ts,tsx}': [buildEslintCommand, buildPrettierCommand],