Follow consistent naming conventions for all identifiers to improve code quality, accessibility, and test reliability. Ensure correct spelling and adhere to established project patterns.
Key practices:
// โ Incorrect
<label for="avalableInMCP">
data-test-id="workflow-settings-vailable-in-mcp"
// โ
Correct
<label for="availableInMCP">
data-test-id="workflow-settings-available-in-mcp"
thumbsUp
) or kebab-case (thumbs-up
) and use consistentlyThis approach helps prevent broken references between HTML elements, ensures tests target the correct elements, and makes code more maintainable by following predictable patterns.
Enter the URL of a public GitHub repository