Created
March 5, 2023 20:05
-
-
Save ganobrega/58f4ebf2e4b3e3898df21ae1d97940c6 to your computer and use it in GitHub Desktop.
Prettier Configs
This file contains 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
{ | |
"importOrder": [ | |
"^@kubernetes?.+$", | |
"^electron?.+$", | |
"^react?.+$", | |
"^antd?.+$", | |
"^@ant-design?.+$", | |
"^@reduxjs?.+$", | |
"^@rjsf?.+$", | |
"^(?![@\\.]).+$", | |
"^@constants", | |
"^@models", | |
"^@redux", | |
"^@organisms", | |
"^@molecules", | |
"^@atoms", | |
"^@components", | |
"^@hooks", | |
"^@utils", | |
"^@assets", | |
"^@styles", | |
"^@src", | |
"^@.+$", | |
"^(?!\\.+\\/styled)^[./]?.+$", | |
"^\\.+\\/styled$" | |
], | |
"importOrderSeparation": true, | |
"importOrderSortSpecifiers": true, | |
"singleQuote": true, | |
"arrowParens": "avoid", | |
"bracketSpacing": false, | |
"semi": true, | |
"trailingComma": "es5" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment