All code snippets, hints, seed code, and automated checks must follow a single, consistent formatting and style contract—especially around quote usage and basic JS/TS syntax.
Apply these rules:
Example (quote-robust hint regex):
// Matches: document.getElementById('income') or document.getElementById("income")
assert.match(code, /document\.getElementById\(\s*(['"])income\1\s*\)/);
Example (style-correct TS):
function f(): void {
const x = 1;
console.log(x);
}
Example (avoid duplicate seed declarations):
const cardDisplay = document.querySelector<HTMLElement>("#current-card")!;
// (don’t redeclare cardDisplay again)
Enter the URL of a public GitHub repository