Created
August 25, 2025 19:10
-
-
Save jbenner-radham/865c8412c6041c8d7ad91cb150d1881d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @see https://prettier.io/docs/configuration | |
| * @type {import('prettier').Config} | |
| */ | |
| const config = { | |
| arrowParens: 'avoid', | |
| quoteProps: 'as-needed', | |
| singleQuote: true, | |
| trailingComma: 'none' | |
| }; | |
| export default config; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment