Address new lint warnings from previous commit.

This commit is contained in:
David Anson 2025-06-23 05:20:51 +00:00
parent 9020557389
commit c81101d2b1
3 changed files with 4 additions and 4 deletions

View file

@ -28,7 +28,7 @@ export default function parseConfiguration(name, content, parsers) {
config = (result && (typeof result === "object") && !Array.isArray(result)) ? result : {};
// Succeeded
return false;
} catch (error) {
} catch(error) {
errors.push(`Parser ${index++}: ${error.message}`);
}
// Failed, try the next parser