mirror of
https://github.com/DeterminateSystems/update-flake-lock.git
synced 2024-12-23 13:32:07 +01:00
12 lines
313 B
JavaScript
12 lines
313 B
JavaScript
/** @type {import('prettier').Config} */
|
|
module.exports = {
|
|
plugins: [require.resolve("@trivago/prettier-plugin-sort-imports")],
|
|
semi: true,
|
|
singleQuote: false,
|
|
tabWidth: 2,
|
|
trailingComma: "all",
|
|
useTabs: false,
|
|
// Import sorting
|
|
importOrderSeparation: true,
|
|
importOrderSortSpecifiers: true,
|
|
};
|