in packages/web-scripts/src/Tasks/FormatTask/index.ts [26:38]
export function getPrettierConfig(): string | null {
if (
!hasConfig([
{ type: 'file', pattern: '.prettierrc' },
{ type: 'file', pattern: 'prettier.config.js' },
{ type: 'package.json', property: 'prettierrc' },
])
) {
return PRETTIER_CONFIG;
}
return null;
}