Make sure to install these prettier plugins:
@ianvs/prettier-plugin-sort-importsprettier-plugin-css-order
| { | |
| "singleQuote": true, | |
| "tabWidth": 2, | |
| "semi": false, | |
| "endOfLine": "lf", | |
| "trailingComma": "none", | |
| "bracketSpacing": true, | |
| "arrowParens": "always", | |
| "proseWrap": "always", | |
| "importOrder": [ | |
| "^react$", | |
| "^next$", | |
| "^@angular$", | |
| "", | |
| "<TYPES>^(node:)", | |
| "<TYPES>", | |
| "<TYPES>^[.]", | |
| "", | |
| "<BUILTIN_MODULES>", | |
| "", | |
| "<THIRD_PARTY_MODULES>", | |
| "", | |
| "^(@/|#)(components|pages)(/.*)?$", | |
| "", | |
| "^(@/|#)(constants|config)(/.*)?$", | |
| "", | |
| "^(@/|#)(util|utils|helper|helpers)(/.*)?$", | |
| "", | |
| "^(@/|#).*$", | |
| "", | |
| "^[.]" | |
| ], | |
| "importOrderCaseSensitive": true, | |
| "importOrderParserPlugins": ["typescript", "decorators-legacy"], | |
| "cssDeclarationSorterOrder": "smacss", | |
| "plugins": [ | |
| "@ianvs/prettier-plugin-sort-imports", | |
| "prettier-plugin-css-order" | |
| ] | |
| } |