mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
a27b51ea94
This code change updates the .prettierrc.json file to include the @trivago/prettier-plugin-sort-imports plugin. By adding this plugin, the codebase will automatically sort imports according to specified rules. This improves code organization and maintainability. Note: This commit message follows the established convention of starting with a verb in the imperative form (e.g., "Update", "Add", "Fix") and providing a concise summary of the changes made.
12 lines
366 B
JSON
12 lines
366 B
JSON
{
|
|
"trailingComma": "es5",
|
|
"tabWidth": 4,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"bracketSpacing": true,
|
|
"arrowParens": "avoid",
|
|
"plugins": ["@trivago/prettier-plugin-sort-imports"],
|
|
"importOrderSeparation": true,
|
|
"importOrderSortSpecifiers": true,
|
|
"importOrderParserPlugins": ["typescript", "decorators", "dynamicImport", "jsx"]
|
|
} |