--- name: comments description: Comment formatting conventions for the Trezor Suite codebase. Use when writing or reviewing code comments. --- # Comments ## Start with uppercase letter and end with a period ```jsx // This is a comment that will help you understand what is happening in the // code below. const someFunction = () => null; ```