10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
import { format } from 'prettier';
|
|
import { stripIndents } from '@nx/devkit';
|
|
|
|
export function formatFile(content, ...values) {
|
|
return format(stripIndents(content, values), {
|
|
singleQuote: true,
|
|
parser: 'typescript',
|
|
});
|
|
}
|