We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ffab8e commit b278d7cCopy full SHA for b278d7c
src/bin/lint.ts
@@ -169,9 +169,7 @@ async function main(argv = process.argv) {
169
170
try {
171
if (prettierBin) {
172
- console.error(
173
- ` ${process.execPath} ${prettierBin} ${prettierArgs.join(' ')}`,
174
- );
+ console.error(` ${prettierBin} ${prettierArgs.join('\n' + ' ')}`);
175
childProcess.execFileSync(
176
process.execPath,
177
[prettierBin, ...prettierArgs],
@@ -183,7 +181,7 @@ async function main(argv = process.argv) {
183
181
},
184
182
);
185
} else {
186
- console.error(' prettier ' + prettierArgs.join(' '));
+ console.error('prettier' + prettierArgs.join('\n' + ' '));
187
childProcess.execFileSync('prettier', prettierArgs, {
188
stdio: 'inherit',
189
windowsHide: true,
0 commit comments