Setup prettier plugin to sort imports

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2021-08-29 18:45:06 +02:00
parent 923d033e9b
commit 879fd1be5a
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
3 changed files with 100 additions and 13 deletions

View file

@ -1,4 +1,6 @@
{
"singleQuote": true,
"trailingComma": "all"
}
"trailingComma": "all",
"importOrder": ["^[./]"],
"importOrderSeparation": true
}