[Cleanup] Remove explicit prettier plugin call (#2299)

This commit is contained in:
Chenlei Hu
2025-01-20 11:15:16 -05:00
committed by GitHub
parent 1f266e826e
commit 87fc7a2c5d

View File

@@ -11,7 +11,7 @@ export default {
function formatAndEslint(fileNames) {
return [
`prettier --write ${fileNames.join(' ')} --plugin @trivago/prettier-plugin-sort-imports`,
`prettier --write ${fileNames.join(' ')}`,
`eslint --fix ${fileNames.join(' ')}`
]
}