Scaffold: Use standard ESLint options (#3498)

This commit is contained in:
Abe Jellinek 2023-12-27 02:29:12 -08:00 committed by GitHub
parent 03432718e3
commit 071bf06995
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2263,7 +2263,7 @@ var Scaffold = new function () {
try {
let proc = await Subprocess.call({
command: eslintPath,
arguments: ['-o', '-', '--', translatorPath],
arguments: ['--format', 'json', '--', translatorPath],
});
let lintOutput = '';
let chunk;