## Acceptance Criteria - Code Blocks should be enforced. Example: ```ts // BAD const foo = () => "foo string"; // GOOD const foo = () => { return "foo string" } ``` _Originally posted by @wiktoriavh in https://github.com/r-webdev/webdev-bot/pull/85#discussion_r3839263073_
Acceptance Criteria
Example:
Originally posted by @wiktoriavh in #85 (comment)